-
Notifications
You must be signed in to change notification settings - Fork 418
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 901 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 901 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
{
"name": "jamstack-ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "npx prisma generate",
"push-db": "npx prisma db push --preview-feature",
"seed-db": "npx prisma db seed --preview-feature",
"db-studio": "npx prisma studio"
},
"dependencies": {
"@prisma/client": "^2.21.2",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.11.0",
"@types/react": "^17.0.2",
"autoprefixer": "^10.1.0",
"next": "10.0.4",
"postcss": "^8.2.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "^4.1.0",
"react-toastify": "^6.2.0",
"tailwindcss": "^2.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.41",
"prisma": "^2.21.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}