-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 951 Bytes
/
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
{
"name": "shorter",
"version": "0.3.0",
"private": true,
"packageManager": "pnpm@9.12.3",
"scripts": {
"release": "pnpm lint && pnpm typecheck && pnpm build && changelogen --release --push",
"build": "turbo build",
"dev": "dotenv -- turbo dev --parallel",
"dev:api": "dotenv -- pnpm --filter @shorter/web dev",
"lint": "turbo lint --",
"lint:fix": "turbo lint:fix",
"clean": "turbo clean",
"clean:modules": "turbo clean:modules && rm -rf .turbo node_modules",
"typecheck": "turbo typecheck",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"changelogen": "^0.5.7",
"dotenv-cli": "^7.4.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"turbo": "^2.2.3"
},
"lint-staged": {
"*.ts": "pnpm run lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}