-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.01 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"starthttps": "node server.js",
"prod": "next build && next start",
"type-check": "tsc",
"add": "docker-compose exec -w /opt/node_app frontend npm install -S",
"add-dev": "docker-compose exec -w /opt/node_app frontend npm install -D",
"remove": "docker-compose exec -w /opt/node_app frontend npm uninstall",
"test": "jest",
"test-e2e": "npx playwright test"
},
"dependencies": {
"@hookform/resolvers": "^2.8.8",
"axios": "^0.24.0",
"babel-loader": "^9.1.0",
"cypress-pseudo-localization": "^1.0.0",
"framer-motion": "^11.11.7",
"jest-environment-jsdom": "^29.7.0",
"jwt-decode": "^4.0.0",
"leaflet": "^1.9.3",
"next": "^13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.33.1",
"react-icons": "^5.3.0",
"react-query": "^3.39.0",
"react-query-auth": "^1.1.0",
"react-range": "^1.8.0",
"react-simple-maps": "^3.0.0",
"react-tooltip": "^5.26.3",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"sass": "^1.45.0",
"tailwind-scrollbar": "^1.3.1",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@playwright/test": "^1.49.0",
"@tailwindcss/forms": "^0.5.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/cypress": "^1.1.3",
"@types/gtag.js": "^0.0.14",
"@types/jest": "^29.5.12",
"@types/node": "^12.12.21",
"@types/react": "^18.0.0",
"@types/react-dom": "^17.0.1",
"@types/react-leaflet": "^3.0.0",
"@types/react-simple-maps": "^3.0.4",
"babel-eslint": "^10.1.0",
"eslint": "8.4.1",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"postcss-preset-env": "^7.0.2",
"tailwindcss": "^3.0.5",
"ts-node": "^10.9.2",
"typescript": "^4.5.4"
}
}