-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.42 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
{
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "vite",
"preview": "vite preview",
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"tsc": "tsc --noEmit",
"prepare": "husky install"
},
"browserslist": "defaults and supports async-functions",
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"boardgame.io": "^0.50.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.26.2",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vitest-globals": "^1.2.0",
"husky": "^8.0.0",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3",
"vite": "^3.2.5",
"vitest": "^0.26.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{md,css,yml,json}": [
"prettier --write"
]
}
}