-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "dotenv -- turbo run build",
"build:shelter": "dotenv -- turbo run build --filter=shelter",
"build:volunteer": "dotenv -- turbo run build --filter=volunteer",
"commit": "cz",
"dev": "dotenv -- turbo dev --concurrency=17",
"dev:shelter": "dotenv -- turbo dev --filter=shelter",
"dev:volunteer": "dotenv -- turbo dev --filter=volunteer",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:pack": "packlint sort -R",
"prepare": "husky install && packlint sort -R",
"test": "turbo run test",
"test:watch": "turbo run test:watch"
},
"config": {
"commitizen": {
"path": "cz-customizable"
},
"cz-customizable": {
"config": "cz-config.js"
}
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"commitizen": "^4.3.0",
"cz-customizable": "^7.0.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.45.0",
"eslint-config-anifriends": "workspace:*",
"husky": "^8.0.0",
"lint-staged": "^15.0.2",
"packlint": "^0.2.4",
"prettier": "3.0.3",
"turbo": "latest"
}
}