-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "renu",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky install && pnpm db:generate",
"db:generate": "turbo run db:generate",
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run typecheck",
"format": "dprint fmt",
"check:everything": "pnpm run typecheck lint test"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@effect/language-service": "0.1.0",
"@types/node": "20.10.6",
"dprint": "0.45.0",
"eslint": "8.56.0",
"eslint-config-custom": "workspace:*",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"next": "14.0.4",
"turbo": "1.11.2",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"dependencies": {
"@effect/data": "0.18.7",
"@effect/schema": "0.57.0",
"@sqlfx/pg": "0.38.0"
},
"engines": {
"node": "20"
},
"pnpm": {
"overrides": {
"@effect/data": "npm:effect",
"@effect/schema": "$@effect/schema"
}
}
}