-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 922 Bytes
/
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
{
"name": "dcl scene",
"version": "1.0.0",
"description": "Decentraland scene",
"scripts": {
"start": "CI=true dcl start -p ${PORT:=8000} --no-debug",
"local": "dcl start",
"edit": "dcl-edit",
"build": "build-ecs",
"watch": "build-ecs --watch",
"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"
},
"dependencies": {
"@dcl/ecs-scene-utils": "latest",
"@dcl/ui-scene-utils": "latest",
"@dcl/npc-scene-utils": "latest",
"decentraland": "^3.10.4"
},
"bundledDependencies": [
"@dcl/ecs-scene-utils",
"@dcl/ui-scene-utils",
"@dcl/npc-scene-utils"
]
}