-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "rc-project",
"repository": "https://github.com/jhoneybee/rc-grid.git",
"private": true,
"author": "jhoneybee <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn workspace @lifhcp/rc-grid start",
"start:docs": "yarn workspace @lifhcp/rc-grid build && yarn workspace website start",
"build": "yarn workspace @lifhcp/rc-grid build",
"lint:script": "yarn workspace @lifhcp/rc-grid lint:script",
"build:storybook": "yarn workspace @lifhcp/rc-grid build-storybook",
"build:docs": "yarn workspace @lifhcp/rc-grid build && yarn workspace website build",
"test": "yarn workspace @lifhcp/rc-grid jest",
"test:codecov": "yarn workspace @lifhcp/rc-grid test:codecov"
},
"devDependencies": {
"husky": ">=6",
"lint-staged": "^11.0.0"
},
"workspaces": [
"packages/*",
"website"
],
"resolutions": {
"@types/react": "^17.0.11"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,json}": [
"prettier --write"
]
}
}