-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "poke-corpus",
"version": "0.1.0",
"homepage": "https://abcboy101.github.io/poke-corpus",
"type": "module",
"private": true,
"dependencies": {
"compression-streams-polyfill": "^0.1.7",
"i18next": "^24.0.5",
"i18next-browser-languagedetector": "^8.0.1",
"i18next-resources-to-backend": "^1.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.1.3"
},
"scripts": {
"ci": "npm run lint && tsc --noEmit && vitest run",
"predeploy": "npm run pull && npm run hash && npm run ci && npm run build",
"deploy": "gh-pages -d dist",
"start": "npm run hash && vite",
"build": "tsc && vite build && node gen-static.js && npm run minify",
"serve": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"lint": "eslint && stylelint \"**/*.css\"",
"pull": "python scripts/remote_go.py && python scripts/remote_masters.py",
"hash": "python scripts/gzip_files.py && python scripts/update_hash.py",
"minify": "minify dist/index.html > dist/index.min.html && python scripts/run_minify.py"
},
"browserslist": {
"production": [
"defaults and fully supports es6-module"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@csstools/postcss-light-dark-function": "^2.0.7",
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"browserslist-to-esbuild": "^2.1.1",
"eslint": "^9.16.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-react": "^7.37.2",
"gh-pages": "^6.1.1",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"minify": "^12.0.0",
"postcss": "^8.4.49",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^5.4.11",
"vite-plugin-eslint2": "^5.0.3",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-stylelint": "^5.3.1",
"vitest": "^2.1.8"
}
}