forked from cheesetosht/student-transcript-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 856 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 856 Bytes
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
{
"name": "archi-data-entry",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8081",
"migrate": "prisma migrate deploy"
},
"dependencies": {
"axios": "^0.21.1",
"formik": "^2.2.9",
"moment": "^2.29.1",
"next": "^10.2.3",
"next-auth": "^3.25.0",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select": "^4.3.1",
"react-toastify": "^7.0.4",
"sass": "^1.34.0",
"swr": "^0.5.6",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@prisma/client": "^2.24.0",
"@types/node": "^15.6.2",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/uuid": "^8.3.0",
"prisma": "^2.24.0",
"typescript": "^4.3.2"
}
}