forked from cywio/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:prod": "yarn migrate:deploy && yarn start",
"db:pull": "npx prisma introspect && npx prisma generate",
"db:generate": "npx prisma generate",
"migrate": "npx prisma db push",
"migrate:create": "npx prisma migrate dev",
"migrate:deploy": "npx prisma migrate deploy"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@prisma/client": "^3.1.1",
"@types/jsonwebtoken": "^8.5.5",
"ansi_up": "^5.0.1",
"argon2": "^0.28.2",
"axios": "^0.21.4",
"boring-avatars": "^1.6.1",
"classnames": "^2.3.1",
"cronstrue": "^1.117.0",
"date-fns": "^2.28.0",
"dsn-parser": "^1.0.3",
"fastq": "^1.13.0",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"next": "latest",
"node-ssh": "^12.0.0",
"otplib": "^12.0.1",
"prisma": "^3.1.1",
"qrcode": "^1.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"request-ip": "^2.1.3",
"string-crypto": "^2.0.2",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@types/node": "^16.10.2",
"@types/react": "^17.0.25",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.12",
"typescript": "^4.4.3"
}
}