-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1016 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
36
37
38
39
{
"name": "frontend",
"private": true,
"packageManager": "pnpm@8.1.1",
"workspaces": [
"apps/*",
"configs/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"commit": "cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "turbo run dev",
"graph": "turbo run build --graph=dependencies-graph.html",
"lint": "turbo run lint",
"lint:pack": "packlint sort -R",
"postinstall": "husky install",
"type:check": "turbo run type:check --parallel"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"all-contributors-cli": "^6.24.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"packlint": "^0.2.4",
"prettier": "^2.8.2",
"turbo": "latest",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.0.0"
}
}