forked from joelface/bg1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.94 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
{
"name": "bg1",
"version": "0.2.0",
"description": "An unofficial, experimental boarding group client",
"license": "GPL-3.0-only",
"repository": "github:joelface/bg1",
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-javascript-obfuscator": "^3.1.0"
},
"scripts": {
"start": "vite",
"build": "rm -f src/api/diu.ts && vite build",
"preview": "vite preview",
"checkall": "npm test && npm run lint && npm run typecheck",
"test": "jest",
"coverage": "jest --coverage --coverageDirectory=.coverage",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write src",
"typecheck": "tsc --noEmit"
},
"browserslist": [
">0.5%",
"not dead",
"not OperaMini all"
]
}