-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": "v16.14.2",
"npm": "8.5.0"
},
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint",
"migrate": "npx prisma migrate dev",
"migrate:up": "npx prisma db push",
"seed:user": "node scripts/create-users.js",
"seed:post": "node scripts/create-posts.js",
"seed:like": "node scripts/create-likes.js"
},
"prisma": {
"seed:example": "ts-node --swc --compiler-options {\"module\":\"CommonJS\"} prisma/seed/seed.ts",
"seed": "ts-node --swc --compiler-options {\"module\":\"CommonJS\"} prisma/seed/seedUser.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.6",
"@prisma/client": "^4.14.0",
"autoprefixer": "10.4.14",
"next": "13.4.1",
"next-auth": "^4.22.1",
"postcss": "8.4.23",
"tailwindcss": "3.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@swc/core": "^1.3.61",
"@types/faker": "^6.6.9",
"@types/node": "^20.1.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/yargs": "^17.0.24",
"cross-env": "^7.0.3",
"prisma": "^4.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}