generated from zeno-oss/zeno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
57
58
59
60
{
"name": "productiv",
"version": "0.2.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"electron",
"next",
"expo"
]
},
"scripts": {
"postinstall": "turbo postinstall",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo lint && manypkg check",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"mobile": "yarn workspace mobile",
"desktop": "yarn workspace desktop",
"web": "yarn workspace web",
"server": "yarn workspace server",
"store": "yarn workspace store",
"utils": "yarn workspace utils"
},
"dependencies": {
"@prisma/client": "^4.10.1",
"@tanstack/react-query": "^4.24.6",
"@trpc/client": "^10.11.1",
"@trpc/react-query": "^10.11.1",
"@trpc/server": "^10.11.1",
"dayjs": "^1.11.7",
"jotai": "^2.0.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"superjson": "^1.12.2",
"zod": "^3.20.6"
},
"devDependencies": {
"@manypkg/cli": "^0.20.0",
"@types/node": "^18.13.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.11",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"prisma": "^4.10.1",
"turbo": "^1.7.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@1.22.19"
}