-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@dcl/asset-packs",
"version": "0.0.0",
"description": "",
"main": "dist/definitions.js",
"typings": "dist/definitions.d.ts",
"scripts": {
"download": "ts-node --project tsconfig.scripts.json ./scripts/download.ts",
"validate": "ts-node --project tsconfig.scripts.json ./scripts/validate.ts",
"upload": "ts-node --project tsconfig.scripts.json ./scripts/upload.ts",
"start": "concurrently \"npm run start:js\" \"npm run start:lib\" \"npm run start:catalog\"",
"start:js": "sdk-commands start --no-browser",
"start:lib": "npm run build:lib -- --watch",
"start:catalog": "nodemon --watch packs -x \"npm run build:catalog\"",
"start:dev": "concurrently \"npm run start:js -- --data-layer\" \"npm run start:lib\" \"npm run start:catalog\"",
"build:js": "sdk-commands build",
"build:lib": "tsc --project tsconfig.lib.json",
"build:catalog": "ts-node --project tsconfig.scripts.json ./scripts/catalog.ts",
"build": "npm run build:js && npm run build:lib && npm run build:catalog",
"migrate": "ts-node --project tsconfig.scripts.json ./scripts/migrate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/asset-packs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/decentraland/asset-packs/issues"
},
"homepage": "https://github.com/decentraland/asset-packs#readme",
"devDependencies": {
"@aws-sdk/client-s3": "^3.405.0",
"@aws-sdk/lib-storage": "^3.405.0",
"@dcl/ecs": "^7.6.0",
"@dcl/hashing": "^3.0.4",
"@dcl/sdk-commands": "^7.5.6",
"@types/mime-types": "^2.1.1",
"@types/node-fetch": "^2.6.4",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"fp-future": "^1.0.1",
"mime-types": "^2.1.35",
"node-fetch": "^2.7.0",
"nodemon": "^3.0.1",
"p-queue": "^7.4.1",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"serve": "^14.2.1",
"serve-handler": "^6.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@dcl-sdk/utils": "^1.2.8",
"@dcl/js-runtime": "7.5.2",
"@types/glob": "^8.1.0",
"glob": "^11.0.0",
"mitt": "^3.0.1"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 80
}
}