-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.69 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.69 KB
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
{
"name": "cowat",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "next build",
"dev": "pnpm ssl:proxy & next dev",
"postinstall": "prisma generate && pnpm theme:generate-typing",
"lint": "tsc --noEmit & next lint",
"start": "pnpm ssl:proxy & next start",
"ssl:generate": "mkcert localhost",
"ssl:proxy": "npx local-ssl-proxy --key localhost-key.pem --cert localhost.pem --source 3001 --target 3000",
"theme:generate-typing": "chakra-cli tokens ./src/theme/theme.ts",
"dk:init": "docker compose up -d && sleep 10 && pnpm db:init",
"dk:start": "docker compose start",
"dk:stop": "docker compose stop",
"dk:clear": "docker compose down --volumes",
"db:init": "pnpm db:push",
"db:push": "prisma db push",
"db:ui": "prisma studio",
"db:seed": "prisma db seed",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy"
},
"dependencies": {
"@chakra-ui/anatomy": "2.1.1",
"@chakra-ui/react": "2.5.1",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@fontsource/inter": "4.5.15",
"@formiz/core": "2.4.6",
"@formiz/validations": "2.0.1",
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.11.0",
"@slack/bolt": "3.12.2",
"@tanstack/react-query": "4.24.10",
"@tanstack/react-query-devtools": "4.29.12",
"@trpc/client": "10.12.0",
"@trpc/next": "10.12.0",
"@trpc/react-query": "10.12.0",
"@trpc/server": "10.12.0",
"date-fns": "2.29.3",
"dayjs": "1.11.7",
"framer-motion": "8.5.3",
"lucide-react": "0.115.0",
"next": "13.2.1",
"next-auth": "4.22.1",
"react": "18.2.0",
"react-day-picker": "8.6.0",
"react-dom": "18.2.0",
"react-focus-lock": "2.9.4",
"react-icons": "4.7.1",
"react-select": "5.7.0",
"react-use-measure": "2.1.1",
"remeda": "1.6.2",
"slack-notify": "2.0.6",
"superjson": "1.12.2",
"zod": "3.20.6"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@chakra-ui/cli": "2.3.0",
"@chakra-ui/styled-system": "2.6.1",
"@faker-js/faker": "8.0.2",
"@types/node": "18.14.1",
"@types/prettier": "2.7.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"eslint": "8.34.0",
"eslint-config-next": "13.2.1",
"local-ssl-proxy": "1.3.0",
"prettier": "2.8.4",
"prisma": "5.11.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"ct3aMetadata": {
"initVersion": "7.3.1"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}