-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "dfg",
"version": "1.0.0",
"homepage": "https://www.nyanchangames.com/softs/dfg/game",
"private": true,
"dependencies": {
"@colyseus/schema": "^2.0.37",
"@types/howler": "^2.2.3",
"@types/js-cookie": "^3.0.2",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-tabs": "^2.3.3",
"bootstrap": "^5.2.3",
"colyseus.js": "^0.15.13",
"dfg-messages": "github:yncat/dfg-messages#master",
"howler": "^2.2.3",
"js-cookie": "^3.0.1",
"react": "^17.0.2",
"react-bootstrap": "^2.3.1",
"react-dom": "^17.0.2",
"react-tabs": "^3.2.2",
"typescript": "^4.3.5",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/node": "^20.19.2",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/ui": "^3.2.4",
"jest-mock-extended": "^2.0.9",
"jsdom": "^26.1.0",
"prettier": "^2.3.2",
"vite": "^7.1.12",
"vitest": "^3.2.4",
"vitest-mock-extended": "^3.1.0"
},
"scripts": {
"start": "node dev/tools/gen_version.mjs && vite",
"build": "node dev/tools/gen_version.mjs && vite build",
"preview": "vite preview",
"test": "node dev/tools/gen_version.mjs && vitest",
"fmt": "prettier --write ./src/**/*.{ts,tsx}",
"sounds:build": "node dev/tools/sounds_build.mjs"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}