-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "prettier --check **/*.ts{,x} && next lint",
"lint:fix": "prettier --write **/*.ts{,x} && next lint --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^6.0.0",
"@mui/material": "^6.0.0",
"@mui/system": "^6.0.0",
"@mui/x-date-pickers": "^7.6.1",
"@reduxjs/toolkit": "^1.9.5",
"@types/css-mediaquery": "^0.1.4",
"axios": "^1.7.4",
"css-mediaquery": "^0.1.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"esri-loader": "^3.7.0",
"framer-motion": "^10.16.4",
"match-sorter": "^7.0.0",
"next": "14.2.16",
"path-scurry": "^2.0.0",
"react": "18.3.1",
"react-big-calendar": "^1.6.9",
"react-dom": "18.3.1",
"react-flip-move": "^3.0.5",
"react-redux": "^8.0.7",
"sharp": "0.33.5",
"swr": "^1.3.0",
"ts-node": "^10.9.2",
"usehooks-ts": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@react-google-maps/api": "^2.18.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.0.0",
"@types/node": "22.8.7",
"@types/react": "^18.0.33",
"@types/react-big-calendar": "^1.6.3",
"eslint": "^8.14.0",
"eslint-config-next": "14.2.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">=16"
}
}