This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "my-app",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"release:patch": "release patch",
"release:minor": "release minor",
"release:major": "release major",
"gh:release": "gh release create"
},
"dependencies": {
"@modulz/radix-icons": "^4.0.0",
"@prisma/client": "^3.4.1",
"@radix-ui/colors": "^0.1.7",
"@radix-ui/react-popover": "^0.1.1",
"@radix-ui/react-radio-group": "^0.1.1",
"@radix-ui/react-switch": "^0.1.1",
"@stitches/react": "^1.2.5",
"@stripe/stripe-js": "^1.21.1",
"blurhash": "^1.1.4",
"next": "12.0.3",
"next-seo": "^4.28.1",
"next-themes": "^0.0.15",
"plaiceholder": "^2.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sharp": "^0.29.2",
"stripe": "^8.186.1",
"swr": "^1.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "17.0.34",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"prettier": "2.4.1",
"prisma": "^3.4.1",
"react-test-renderer": "^17.0.2",
"release": "^6.3.0",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}