-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "zk-wordle",
"version": "0.0.0",
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"gen:tokens": "chakra-cli tokens src/styles/theme.ts",
"lint": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
"start": "next start",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"postinstall": "prisma generate && prisma db push"
},
"dependencies": {
"@chakra-ui/cli": "^2.4.1",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/theme-tools": "^2.0.16",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/be-vietnam-pro": "^4.5.8",
"@fontsource/jetbrains-mono": "^4.5.12",
"@prisma/client": "^4.14.1",
"@vercel/analytics": "^0.1.11",
"@vercel/og": "^0.3.0",
"@wry/equality": "^0.5.6",
"date-fns": "^2.30.0",
"framer-motion": "^10.12.16",
"iconoir-react": "^6.8.0",
"idb": "^7.1.1",
"next": "^13.4.4",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-countdown": "^2.3.5",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"tiny-invariant": "^1.3.1",
"typescript": "^4.9.5",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@chakra-ui/styled-system": "^2.9.0",
"@types/node": "^18.16.16",
"@types/react": "^18.2.7",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.4",
"favicons": "^7.1.2",
"prettier": "^2.8.8",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"turbo": "^1.9.9"
},
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}