-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.34 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.34 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=10.15.0",
"yarn": ">=1.5.1 <=1.18.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna exec --parallel -- babel --root-mode upward src -d lib --ignore **/*.stories.js,**/*.spec.js",
"coverage": "jest --coverage",
"deploy-storybook": "storybook-to-ghpages",
"dev": "start-storybook -p 5555",
"lint:js": "eslint . --ext .js --ignore-pattern lib --ignore-pattern node_modules",
"lint:styles": "stylelint './packages/**/*.js'",
"lint": "yarn lint:js && yarn lint:styles",
"now-build": "build-storybook -c .storybook -o public",
"prettier": "prettier --write \"**/*.{js,json,md,yml}\"",
"lerna-publish": "lerna publish",
"test": "yarn build && yarn lint && yarn coverage",
"unit": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@storybook/addon-docs": "6.0.21",
"@storybook/preset-create-react-app": "3.1.4",
"@storybook/react": "6.0.21",
"@storybook/storybook-deployer": "2.8.6",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.3.0",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.11.1",
"eslint": "7.8.1",
"eslint-config-get-off-my-lawn": "5.0.1",
"husky": "4.3.0",
"jest": "26.4.2",
"jest-haste-map": "26.3.0",
"jest-resolve": "26.4.0",
"jest-styled-components": "7.0.3",
"lerna": "3.22.1",
"lint-staged": "10.3.0",
"prettier": "2.1.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"styled-components": "5.2.0",
"stylelint": "13.7.0",
"stylelint-config-get-off-my-lawn": "2.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"webpack": "4.44.1"
}
}