forked from jamstack-cms/jamstack-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 849 Bytes
/
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
{
"name": "jamstack-ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"push-db": "npx prisma db push --preview-feature",
"seed-db": "npx ts-node prisma/seed.ts",
"db-studio": "npx prisma studio"
},
"dependencies": {
"@prisma/client": "2.15.0",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.11.0",
"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": {
"@prisma/cli": "2.15.0",
"@types/node": "^14.14.22",
"prisma": "^2.16.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}