-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "dcl-project",
"version": "1.0.0",
"description": "SDK7 Template scene",
"scripts": {
"start": "sdk-commands start",
"deploy": "sdk-commands deploy",
"build": "sdk-commands build",
"upgrade-sdk": "npm install --save-dev @dcl/sdk@latest",
"upgrade-sdk:next": "npm install --save-dev @dcl/sdk@next",
"lint": "eslint ./**/*.{ts,tsx}",
"lint:fix": "eslint --fix ./**/*.{ts,tsx}",
"format": "prettier --config .prettierrc -c ./**/*.{ts,tsx}",
"format:fix": "prettier -w --config .prettierrc -c ./**/*.{ts,tsx}"
},
"devDependencies": {
"@dcl/asset-packs": "latest",
"@dcl/js-runtime": "7.6.4",
"@dcl/sdk": "latest",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"prettier": "^3.0.3",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
},
"dependencies": {
"@dcl-sdk/utils": "^1.2.8",
"dcl-npc-toolkit": "^1.5.0",
"dcl-ui-toolkit": "^0.10.0"
},
"bundleDependencies": [
"@dcl-sdk/utils"
]
}