-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"private": true,
"type": "module",
"devDependencies": {
"@pkmn/eslint-config": "^6.4.0",
"@types/favicons": "^7.0.0",
"@types/jest": "^29.5.11",
"@types/parse5": "^7.0.0",
"@types/react": "^18.2.45",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"es-module-lexer": "^1.4.1",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"esquery": "1.5.0",
"favicons": "^7.1.4",
"json-stringify-pretty-compact": "4.0.0",
"parse5": "^7.1.2",
"sharp": "^0.33.1",
"source-map-support": "^0.5.21",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
},
"optionalDependencies": {
"@img/sharp-linux-x64": "^0.33.1",
"@rollup/rollup-linux-x64-gnu": "^4.9.1"
},
"scripts": {
"lint": "eslint --cache . --ext ts,tsx",
"fix": "eslint --fix . --ext ts,tsx",
"compile": "tsc -p . && esbuild tools/build.ts --sourcemap --format=esm --outfile=build/index.js",
"start": "vite",
"build": "npm run compile && vite build",
"preview": "vite preview",
"test": "vitest run",
"scene": "vite test/scene",
"pretest": "npm run build",
"posttest": "npm run lint"
},
"eslintConfig": {
"extends": "@pkmn"
}
}