-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "dcl-project",
"version": "1.0.0",
"description": "My new Decentraland project",
"scripts": {
"start": "dcl start",
"build": "build-ecs",
"watch": "build-ecs --watch",
"build:ci": "dcl build",
"deploy:prod": "dcl deploy",
"deploy:prod-linker": "dcl deploy -t linker-server.decentraland.org --skip-validations true",
"deploy:testing": "dcl deploy --target peer-testing.decentraland.org",
"deploy:now": "dcl export && now export",
"ecs:install": "npm install --save-dev decentraland-ecs@latest",
"ecs:install-next": "npm install --save-dev decentraland-ecs@next",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@dcl/eslint-config": "^1.0.1",
"decentraland-ecs": "latest",
"decentraland": "^3.12.3"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0",
"yarn": "please use npm"
},
"dependencies": {
"@dcl/ecs-scene-utils": "^1.7.5",
"@dcl/npc-scene-utils": "1.5.1-20221116221150.commit-7541c0a",
"@dcl/ui-scene-utils": "^1.8.4"
},
"bundledDependencies": [
"@dcl/ecs-scene-utils",
"@dcl/ui-scene-utils",
"@dcl/npc-scene-utils"
]
}