-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nextjs-simple-ecommerce",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "prisma generate",
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint --fix",
"prettier": "prettier --write .",
"dev:pscale:connect": "pscale connect simple-ecommerce initial-setup --port 3309",
"prisma:studio": "npx prisma studio",
"prisma:push": "npx prisma db push",
"prisma:seed": "npx prisma db seed"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} --transpile-only prisma/seed.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.13",
"@chakra-ui/react": "^2.4.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@next-auth/prisma-adapter": "1.0.5",
"@paypal/react-paypal-js": "^7.8.2",
"@prisma/client": "^4.5.0",
"@tanstack/react-query": "^4.16.0",
"@tanstack/react-query-devtools": "^4.19.1",
"@trpc/client": "^10.0.0",
"@trpc/next": "^10.0.0",
"@trpc/react-query": "^10.0.0",
"@trpc/server": "^10.0.0",
"eslint-config-prettier": "^8.5.0",
"framer-motion": "^7.6.18",
"lodash.debounce": "^4.0.8",
"next": "13.0.2",
"next-auth": "4.17.0",
"node-fetch": "^3.3.0",
"nookies": "^2.5.2",
"prettier": "^2.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"sharp": "^0.31.3",
"stripe": "^11.6.0",
"superjson": "1.9.1",
"ts-node": "^10.9.1",
"zod": "^3.20.0",
"zustand": "^4.1.5"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.26.0",
"eslint-config-next": "13.0.2",
"eslint-plugin-import-helpers": "^1.3.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prisma": "^4.5.0",
"typescript": "^4.8.4"
},
"ct3aMetadata": {
"initVersion": "6.11.1"
}
}