-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.85 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
{
"version": "0.1.0",
"name": "next-zustand-joyui-boilerplate",
"author": "Andrew Schneider",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "next build",
"clean": "rm -rf node_modules && rm -rf out",
"ci:lint": "eslint ./src/**/* --max-warnings=0",
"dev": "next dev",
"lint": "eslint './src/**/*' --fix",
"start": "next start",
"prepare": "husky install"
},
"lint-staged": {
"*": "eslint ./src/**/* --max-warnings=0"
},
"dependencies": {
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "5.16.4",
"@mui/joy": "5.0.0-beta.48",
"@mui/material": "5.16.4",
"@tanstack/react-query": "5.51.11",
"immer": "10.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"next": "14.2.5",
"zustand": "4.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/node": "20.9.3",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "6.21.0",
"babel-jest": "29.7.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sort-destructure-keys": "1.6.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-testing-library": "6.2.2",
"husky": "9.1.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"typescript": "5.3.3"
}
}