-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 879 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
{
"dependencies": {
"normalize.css": "8.0.1",
"obset": "2.2.2",
"phaser": "3.55.2"
},
"devDependencies": {
"@snowpack/plugin-typescript": "1.2.1",
"@types/snowpack-env": "2.3.4",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"eslint": "7.32.0",
"eslint-plugin-unicorn": "35.0.0",
"prettier": "2.3.2",
"snowpack": "3.8.6",
"tslib": "2.3.1",
"typescript": "4.5.0-dev.20210816"
},
"scripts": {
"build": "snowpack build",
"fmt": "prettier -u --config .prettierrc -w src/**/*.{d.ts,ts,json}",
"lint": "eslint ./src --ext .d.ts,.ts",
"lint:fix": "eslint ./src --ext .d.ts,.ts --fix",
"nuke": "\"rd /q /s .\\node_modules\\.cache\\snowpack\" | cmd",
"start": "pnpm nuke && snowpack dev",
"tidy": "pnpm run lint:fix && pnpm run fmt"
},
"type": "module"
}