-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "timetables",
"homepage": "https://timetables.katris.dev/",
"version": "1.3.0",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "^22.5.1",
"npm": "^10.8.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"axios": "^1.7.7",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.7",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.3.1",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"scripts": {
"start": "vite dev --port 3000",
"build": "vite build --outDir build",
"preview": "vite preview",
"test": "vitest",
"prettier": "prettier --write \"{src/**/*.{ts,tsx,scss},*.md}\"",
"prepare": "husky"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src/{**/*,*}.{ts,tsx,css,scss},*.md}": [
"npm run prettier"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}