generated from filename24/monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "main",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter '!./apps/*'",
"build:apps": "turbo run build --filter '!./packages/*'",
"lint": "turbo run lint",
"format": "turbo run format",
"dev": "turbo run dev --parallel",
"postinstall": "is-ci || husky install",
"update": "yarn upgrade-interactive",
"generate": "turbo run db:generate",
"db:push": "turbo run db:push",
"db:migrate-dev": "turbo run db:migrate-dev",
"create-package": "turbo gen"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@commitlint/config-conventional": "^17.7.0",
"@turbo/gen": "^1.10.12",
"@types/eslint": "^8",
"@types/node": "^18.17.0",
"eslint": "^8.47.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.3.0",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
},
"resolutions": {
"eslint-config-neon@^0.1.47": "patch:eslint-config-neon@npm%3A0.1.47#./.yarn/patches/eslint-config-neon-npm-0.1.47-6e2f4c3d60.patch",
"dokdo@^1.0.1": "patch:dokdo@npm%3A1.0.1#./.yarn/patches/dokdo-npm-1.0.1-3b43b27044.patch"
},
"workspaces": [
"apps/*",
"packages/*"
],
"private": true,
"dependencies": {
"@sentry/node": "^7.67.0"
}
}