-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.96 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
66
67
68
69
70
71
72
73
74
{
"name": "killboard",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@apollo/client": "^4.1.5",
"@fortawesome/fontawesome-free": "^7.2.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@tippyjs/react": "^4.2.6",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"graphql": "^16.12.0",
"i18next": "^25.8.13",
"lodash": "^4.17.23",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-router": "^7.13.0",
"sass": "^1.97.3",
"simpleheat": "^0.4.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.2",
"@graphql-codegen/client-preset": "^5.2.3",
"@graphql-codegen/typescript": "^5.0.8",
"@parcel/watcher": "^2.5.6",
"@types/eslint-config-prettier": "^6.11.3",
"@types/gtag.js": "^0.0.20",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/simpleheat": "^0.4.3",
"@vitejs/plugin-react": "^5.1.4",
"bulma": "^1.0.4",
"oxlint": "^1.49.0",
"oxlint-tsgolint": "^0.14.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "tsc -p . && vite build && oxlint --type-aware src",
"lint": "oxlint --type-aware src",
"lint:fix": "oxlint --type-aware --fix src",
"codegen": "graphql-codegen",
"codegen-watch": "graphql-codegen -w"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"semi": true,
"endOfLine": "auto"
}
}