forked from AxaFrance/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 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
{
"name": "@axa-fr/design-system",
"version": "0.1.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/AxaFrance/design-system.git"
},
"scripts": {
"start": "concurrently \"npm run start -w=packages/css\" \"npm run start:storybook -w=packages/css\" \"npm run start:storybook -w=packages/react\" -c auto -n css,css:storybook,react:storybook",
"build": "npm run build --workspaces && npm run build:storybook --workspaces",
"lint": "concurrently \"npm:eslint --workspaces\" \"npm:stylelint -w=packages/css\" \"npm:prettier --workspaces\" \"npm:tsc --workspaces\" -c auto -n eslint,stylelint,prettier,tsc",
"package:check": "npx --yes package-lock-utd@1.1.3",
"prepare": "husky install"
},
"author": "AxaFrance",
"license": "MIT",
"bugs": {
"url": "https://github.com/AxaFrance/design-system/issues"
},
"homepage": "https://github.com/AxaFrance/design-system#readme",
"workspaces": [
"packages/css",
"packages/react"
],
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"concurrently": "^8.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0"
},
"lint-staged": {
"{package,package-lock}.json": "npm run package:check"
},
"volta": {
"node": "20.10.0",
"npm": "10.2.5"
}
}