forked from joelface/bg1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.6 KB
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
{
"name": "bg1",
"version": "0.2.0",
"description": "An unofficial, experimental boarding group client",
"license": "GPL-3.0-only",
"repository": "github:joelface/bg1",
"dependencies": {
"preact": "^10.18.1"
},
"devDependencies": {
"@prefresh/vite": "^2.4.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/estree": "^1.0.3",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-javascript-obfuscator": "^3.0.3"
},
"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"
]
}