-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "splat-attack",
"description": "SDK7 surface painting example",
"version": "1.0.0",
"dependencies": {
"@dcl-sdk/utils": "^1.2.8",
"dcl-npc-toolkit": "^1.4.0",
"web3": "^4.12.1"
},
"devDependencies": {
"@dcl/asset-packs": "^1.20.0",
"@dcl/js-runtime": "7.5.6",
"@dcl/sdk": "^7.5.6",
"@eslint/js": "^9.15.0",
"@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-n": "^16.6.2",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"prettier": "^3.0.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.15.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
},
"scripts": {
"build": "sdk-commands build",
"deploy": "sdk-commands deploy",
"start": "sdk-commands start",
"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}"
}
}