-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.26 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
{
"name": "amazon-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"analyze": "ANALYZE=true next build",
"dev": "next dev -p 3030",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start -p 3030",
"db:push:dev": "pnpm exec dotenv -e .env.development -- prisma db push",
"db:seed:dev": "pnpm exec dotenv -e .env.development -- prisma db seed",
"db:studio:dev": "pnpm exec dotenv -e .env.development -- prisma studio",
"stripe:listen": "stripe listen --forward-to localhost:3030/api/stripe-webhook --latest"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.2.0",
"@radix-ui/colors": "^0.1.9",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.33.0",
"@trpc/client": "^10.38.0",
"@trpc/next": "^10.38.0",
"@trpc/react-query": "^10.38.0",
"@trpc/server": "^10.38.0",
"micro": "^10.0.1",
"next": "^13.4.19",
"next-auth": "^4.23.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"stripe": "^13.3.0",
"superjson": "1.12.2",
"zod": "^3.22.2"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@next/bundle-analyzer": "^13.4.19",
"@tanstack/react-query-devtools": "^4.33.0",
"@types/eslint": "^8.44.2",
"@types/node": "^18.17.12",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-next": "^13.4.19",
"eslint-plugin-react-redux": "^4.0.0",
"postcss": "^8.4.28",
"prettier": "^2.8.8",
"prettier-plugin-prisma": "^4.17.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^5.2.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"ct3aMetadata": {
"initVersion": "7.8.0"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}