-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
{
"name": "edith",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"**/*": [
"lint",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@babel/core": "^7.22.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "5.0.0-alpha.132",
"@mui/material": "^5.13.3",
"@mui/system": "^5.13.2",
"@mui/x-data-grid": "^6.9.1",
"@mui/x-date-pickers": "^6.6.0",
"bcrypt": "^5.1.0",
"dayjs": "^1.11.8",
"express-jwt": "^7.7.7",
"jsonwebtoken": "^8.5.1",
"lodash-es": "^4.17.21",
"luxon": "^3.3.0",
"mongoose": "^6.11.1",
"next": "12.2.1-canary.2",
"prismjs": "^1.29.0",
"rc-tree": "^5.7.4",
"react": "18.0.0",
"react-calendar-heatmap": "^1.9.0",
"react-data-grid": "7.0.0-beta.34",
"react-dom": "18.0.0",
"react-hook-form": "^7.44.3",
"tiged": "^2.12.5",
"zustand": "^4.3.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash-es": "^4.17.7",
"@types/luxon": "^3.3.0",
"@types/node": "^17.0.45",
"@types/prismjs": "^1.26.0",
"@types/react": "18.0.5",
"@types/react-calendar-heatmap": "^1.6.3",
"@types/react-dom": "18.0.1",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.8.0",
"husky": "^7.0.4",
"jest": "^28.1.3",
"lint-staged": "^12.5.0",
"mongodb-memory-server": "^8.12.2",
"node-mocks-http": "^1.12.2",
"prettier": "2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}