-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-component-lib",
"version": "0.0.0",
"description": "A library of reusable React components",
"main": "build/index.js",
"jest": {
"rootDir": "src/",
"moduleNameMapper": {
"^.+\\.(css)$": "<rootDir>/../test_config/CSSStub.js"
}
},
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "jest",
"test-develop": "jest --watch",
"build": "babel src -d build --copy-files",
"develop": "babel src -w -d build --copy-files",
"postinstall": "babel src -d build --copy-files",
"start-storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o storybook-static"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asascience/react-component-lib.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/asascience/react-component-lib/issues"
},
"homepage": "https://github.com/asascience/react-component-lib#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.4.7",
"@storybook/react": "^3.4.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.4.1",
"jsdoc": "^3.5.4",
"react": ">=16.4.1",
"react-dom": ">=16.4.1",
"react-test-renderer": "^16.4.1"
},
"peerDependencies": {
"react": ">=16.4.1",
"react-dom": ">=16.4.1",
"react-router": ">=4.1.0"
},
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"leaflet": "^1.3.1",
"material-ui": "^0.20.0",
"material-ui-chip-input": "^0.18.3",
"moment": "^2.18.1",
"radial-progress-chart": "0.0.4",
"react-bootstrap": "^0.32.1",
"react-dropzone-component": "^2.0.0",
"react-fitted-image": "^0.1.2",
"react-fontawesome": "^1.6.1",
"react-highcharts": "^16.0.2",
"react-icons": "^2.2.5",
"react-jsonschema-form": "^1.0.4",
"react-leaflet": "^1.9.1",
"react-map-gl": "^3.2.10",
"react-router-dom": ">= 4.1.1",
"react-tap-event-plugin": "^3.0.3",
"react-timezone": "^0.2.0",
"underscore": "^1.9.1"
}
}