-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.14 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
67
68
{
"name": "@react-medellin/components",
"version": "1.5.0",
"description": "React Medellin Component Library",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"author": "Alejandro Nanez <[email protected]>",
"license": "MIT",
"devDependencies": {
"@storybook/react": "^3.1.3",
"babel-cli": "^6.24.1",
"babel-eslint": "6",
"babel-helpers": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.47.0",
"flow-typed": "^2.1.2",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^3.2.2",
"styled-components": "^2.1.0",
"uglify-es": "^3.0.11"
},
"scripts": {
"dev": "npm-run-all --parallel dev:watch storybook",
"dev:watch": "NODE_ENV=development rollup --config rollup.dev.js --watch",
"build": "NODE_ENV=production rollup --config rollup.prod.js",
"lint": "eslint src --cache",
"lint:fix": "eslint src/**/*.js --fix",
"test": "jest",
"test:watch": "jest --watch",
"flow": "flow",
"quality": "npm run flow && npm run lint && npm run test",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"dependencies": {},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^15.5.4",
"styled-components": "^2.1.0"
}
}