-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "@route-genius/root",
"private": true,
"scripts": {
"build": "turbo run build",
"build:api": "turbo run build --filter=api...",
"dev": "dotenv -e .env -e .env.development -- turbo run dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx,vue}\"",
"clean": "rm -rf node_modules .turbo && turbo run clean",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"commit": "git-cz",
"db:push": "turbo run db:push",
"db:reset": "turbo run db:reset",
"db:studio": "turbo run db:studio",
"db:generate": "turbo run db:generate"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/cz-commitlint": "^18.4.4",
"@commitlint/prompt-cli": "^18.4.4",
"@saas-monorepo/eslint-config": "workspace:*",
"@saas-monorepo/prettier-config": "workspace:*",
"@saas-monorepo/typescript-config": "workspace:*",
"commitizen": "^4.3.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"husky": "^8.0.3",
"inquirer": "^8.2.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.1",
"turbo": "latest"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "[email protected]"
}