-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "test",
"version": "0.1.0",
"private": true,
"scripts": {
"build:server": "cd server && rimraf dist && npx tsc && prisma generate",
"start:server": "node server/dist/index.js",
"predev:server": "cd server && rimraf dist && tsc",
"dev:server": "cd server && concurrently \"npx tsc -w\" \"nodemon dist/index.js\"",
"dev:client": "next dev",
"build:client": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.16",
"@prisma/client": "^5.5.2",
"@reduxjs/toolkit": "^1.9.7",
"@testing-library/jest-dom": "^6.1.5",
"@trpc/client": "^10.41.0",
"@trpc/server": "^10.43.0",
"@uploadthing/react": "^5.7.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"framer-motion": "^10.16.16",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"next": "^14.0.0",
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"prisma": "^5.5.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.47.0",
"react-player": "^2.13.0",
"react-redux": "^8.1.3",
"react-toastify": "^9.1.3",
"react-top-loading-bar": "^2.3.1",
"redux-persist": "^6.0.0",
"uploadthing": "^5.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/bcryptjs": "^2.4.5",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.4",
"@types/lodash": "^4.14.202",
"@types/node": "^20.8.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/redux-persist": "^4.3.1",
"autoprefixer": "^10",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.0.1",
"postcss": "^8",
"rimraf": "^5.0.5",
"tailwindcss": "^3",
"ts-node": "^10.9.1",
"typescript": "^5"
}
}