-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "root",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"client": "nx serve client",
"server": "nx serve server",
"preview:client:dev": "nx preview client --configuration=development",
"preview:client:prod": "nx preview client --configuration=production",
"preview:server:dev": "nx serve server --configuration=development",
"preview:server:prod": "nx serve server --configuration=production",
"preview": "nx run-many --target=preview --projects=client,server --configuration=production --parallel=true",
"dev": "nx run-many --target=serve --projects=client,server --parallel=true",
"build": "nx run-many --target=build --projects=client,server --parallel=true",
"dotenv": "dotenv-safe config --example=.env.example --path=.env node ./node_modules/@nrwl/cli/bin/nx.js"
},
"private": true,
"devDependencies": {
"@nrwl/cypress": "15.9.2",
"@nrwl/esbuild": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/jest": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/node": "^15.8.7",
"@nrwl/react": "^15.8.7",
"@nrwl/vite": "^15.8.7",
"@nrwl/web": "^15.8.7",
"@nrwl/workspace": "^15.8.7",
"@tanstack/react-query-devtools": "^4.28.0",
"@testing-library/react": "14.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/minimist": "^1.2.2",
"@types/morgan": "^1.9.4",
"@types/node": "~18.16.1",
"@types/react": "^18.0.33",
"@types/react-dom": "~18.2.1",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.2.0",
"dotenv-safe": "^8.2.0",
"esbuild": "^0.17.5",
"eslint": "~8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jsdom": "~21.1.1",
"nx": "15.9.2",
"postcss": "^8.4.21",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.3.0",
"react-test-renderer": "18.2.0",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"vite": "^4.0.1",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.0.2"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "~2.6.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@tanstack/react-query": "^4.27.0",
"axios": "^1.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dom": "^0.0.3",
"express": "~4.18.1",
"express-async-handler": "^1.2.0",
"express-validator": "^7.0.0",
"framer-motion": "^10.8.5",
"helmet": "^6.0.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"morgan": "^1.10.0",
"mysql2": "^3.2.0",
"node-cache": "^5.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.7",
"react-icons": "^4.8.0",
"react-router-dom": "6.11.0",
"react-toastify": "^9.1.2",
"redis": "^4.6.5",
"tslib": "^2.3.0",
"typeface-roboto": "^1.1.13",
"typescript": "~5.0.4",
"zustand": "^4.3.6"
}
}