-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "realib",
"version": "0.0.1",
"description": "Boilerplate for creating React component libraries",
"main": "build/realib.cjs.js",
"module": "build/realib.esm.js",
"browser": "build/realib.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "run-p build-dev storybook",
"build-dev": "rollup -c -w",
"storybook": "start-storybook -p 9001 -c .storybook",
"eslint": "eslint -c .eslintrc src",
"flow:start": "flow start",
"flow:stop": "flow stop",
"flow:status": "flow status",
"flow:coverage": "flow coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madeagency/realib.git"
},
"author": "MADE Code",
"license": "MIT",
"bugs": {
"url": "https://github.com/madeagency/realib/issues"
},
"homepage": "https://github.com/madeagency/realib#readme",
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"emotion": "^9.1.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.69.0",
"prettier": "^1.11.1",
"react": "^16.3.1",
"react-emotion": "^9.1.1",
"react-router-dom": "^4.2.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rxjs": "^5.5.10"
},
"devDependencies": {
"@storybook/addon-a11y": "^3.4.5",
"@storybook/react": "^3.4.2",
"npm-run-all": "^4.1.3",
"react-dom": "^16.3.2"
}
}