-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.27 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "better-skill-capped",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"start": "vite serve --host",
"build": "vite build",
"lint+build": "npm run lint && npm run build",
"lint:fix+build": "npm run lint:fix && npm run build",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint": "eslint \"src/**/*.{js,ts,tsx}\" --color",
"eslint:fix": "eslint \"*/**/*.{js,ts,tsx}\" --fix --color",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@sentry/react": "^8.50.0",
"axios": "^1.7.9",
"bulma": "^0.9.4",
"bulma-prefers-dark": "^0.1.0-beta.1",
"classnames": "^2.5.1",
"fuse.js": "^7.0.0",
"ga-4-react": "^0.1.281",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-highlight-words": "^0.21.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.3",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-highlight-words": "^0.20.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"vite": "^6.0.7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}