This repository was archived by the owner on Feb 20, 2025. It is now read-only.
forked from kevincloud/talkin-ship-workshop-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "toggle-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "npx playwright install"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.12",
"@prisma/client": "^4.15.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-form": "^0.0.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-separator": "^1.0.2",
"@radix-ui/react-toast": "^1.1.3",
"@stitches/react": "^1.2.8",
"@stripe/stripe-js": "^1.52.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"class-variance-authority": "^0.5.2",
"clsx": "^1.2.1",
"cookies-next": "^2.1.1",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"framer-motion": "^10.12.4",
"launchdarkly-node-server-sdk": "^7.0.1",
"launchdarkly-react-client-sdk": "^3.0.4",
"local-storage": "^2.0.0",
"lucide-react": "^0.162.0",
"next": "13.2.4",
"next-fonts": "^1.5.1",
"prisma": "^4.15.0",
"react": "18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"stripe": "^11.16.0",
"styled-components": "^5.3.9",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"use-shopping-cart": "^3.1.6",
"uuid": "^9.0.1"
},
"homepage": "http://localhost:3000",
"devDependencies": {
"@playwright/test": "^1.32.3",
"@types/node": "^20.2.5",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"playwright": "^1.32.3",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}