-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap && lerna run build:bootstrap --stream",
"start": "lerna run start --stream --parallel --npm-client=yarn",
"serve": "lerna run serve --stream",
"build": "lerna run build --scope components-extra --stream",
"build:docs": "lerna run build --scope docs --stream",
"test": "lerna run test --stream",
"check-types": "lerna run check-types --stream",
"lint": "eslint --cache packages/**/*.{ts,tsx,js}",
"prettier": "prettier --write packages/**/*.{ts,tsx,js}",
"validate": "yarn lint && yarn test && yarn build && yarn check-types"
},
"devDependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/types": "^5.1.0",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"packages/**/*.*(ts|tsx|js)\""
}
},
"workspaces": [
"packages/*"
]
}