-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.46 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
47
48
49
50
51
52
53
54
55
56
{
"private": true,
"name": "design-system",
"workspaces": [
"lib",
"documentation"
],
"scripts": {
"dev:lib": "cd lib && yarn build:proptypes && yarn dev",
"build:lib": "cd lib && yarn build:proptypes && yarn build:lib && yarn build:types",
"test:lib": "cd lib && yarn test",
"server:docs": "npx netlify-cms-proxy-server",
"dev:docs": "cd documentation && yarn provision && yarn dev",
"build:docs": "cd documentation && yarn provision && yarn build",
"start:docs": "cd documentation && yarn provision && yarn start",
"dev:sandbox": "cd lib && yarn start:sandbox",
"build:types": "cd lib && NODE_ENV=production tsc --emitDeclarationOnly && tsc-alias",
"lint-staged": "cd lib && yarn run precommit",
"build-all": "run-s build:*"
},
"devDependencies": {
"husky": "^4.3.8",
"npm-run-all": "^4.1.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "bash scripts/prevent-commit.sh && yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-length": [
0,
"always"
],
"body-max-line-length": [
0,
"always"
]
}
},
"resolutions": {
"react": "18.3.1",
"react-dom": "18.3.1",
"next/@swc/helpers": "0.4.36",
"@swc/helpers": "0.4.36"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.x"
}
}