-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "flare-dapp.io",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build && npm run postinstall && npm run prisma:migrate:deploy",
"dev": "next -p 2222",
"test-e2e": "playwright test",
"start": "node server.js",
"prepare": "husky install",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy --preview-feature",
"prisma:migrate:status": "prisma migrate status --preview-feature",
"prisma:migrate:resolve": "prisma migrate resolve --preview-feature",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"docker:db": "docker-compose -f docker-compose.db.yml up -d",
"spell-check": "cspell lint . --no-progress",
"analyze": "NODE_ENV=production ANALYZE=true BUNDLE_ANALYZE=browser next build",
"postinstall": "prisma generate",
"lint": "next lint"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-unknown --ignore-path ./.gitignore --write "
]
},
"dependencies": {
"@clerk/nextjs": "4.24.0-snapshot.d446acb",
"@clerk/themes": "^1.7.5",
"@prisma/client": "^4.16.2",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "20.4.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@uiw/react-markdown-editor": "^5.11.3",
"autoprefixer": "10.4.14",
"bad-words": "^3.0.4",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"eslint": "8.44.0",
"eslint-config-next": "13.4.8",
"ethers": "^5.7.2",
"framer-motion": "^10.16.1",
"jotai": "^2.4.0",
"lucide-react": "^0.258.0",
"next": "13.4.6",
"next-themes": "^0.2.1",
"postcss": "8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.5.2",
"react-markdown": "^8.0.7",
"react-quill": "^2.0.0",
"react-tag-input-component": "^2.0.2",
"tailwind-merge": "^1.13.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6"
},
"devDependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@types/bad-words": "^3.0.1",
"husky": "^8.0.3",
"prettier": "^3.0.2",
"prisma": "^4.16.2",
"tailwindcss": "3.3.3"
},
"engines": {
"node": ">=15"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}