-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.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
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "lerna run start --stream --parallel",
"dev": "npm run samples:copy && start-storybook -s ./public -p 5555",
"samples:copy": "npm run samples:delete && copyfiles \"packages/**/*.js\" public",
"samples:delete": "rimraf public/*",
"bootstrap": "lerna bootstrap --use-workspaces",
"bootstrap:seprated": "lerna exec npm install",
"build": "build-storybook -c .storybook -o public",
"build-lerna": "lerna exec --parallel -- babel --root-mode upward src -d lib --ignore **/*.story.js,**/*.spec.js",
"coverage": "jest --coverage",
"unit": "jest",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint packages/**/*.js",
"lint:eslint": "eslint --ignore-path .gitignore packages",
"lint:eslint:fix": "eslint --ignore-path .gitignore packages --fix",
"lint:js": "npm run lint:eslint -- . ",
"prettify": "prettier --write packages/**/*.js packages/**/**/*.js packages/**/**/**/*.js"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-knobs": "^5.2.4",
"@storybook/addon-notes": "^5.2.3",
"@storybook/addon-viewport": "^5.2.3",
"@storybook/react": "^5.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"copyfiles": "^2.1.1",
"eslint": "^6.5.1",
"eslint-config-adpyke-es6": "^1.4.12",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"jest-haste-map": "^24.9.0",
"jest-resolve": "^24.9.0",
"jest-styled-components": "^6.3.3",
"lerna": "^3.16.5",
"prettier": "^1.18.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-test-renderer": "^16.10.2",
"rimraf": "^3.0.0",
"storybook-addon-smart-knobs": "^5.0.0",
"webpack": "^4.41.0"
},
"dependencies": {
"react-router-dom": "^5.1.2",
"styled-components": "^4.4.0"
}
}