-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.18 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-gear-chart",
"description": "",
"version": "0.0.13",
"author": "[email protected]",
"license": "MIT",
"keywords": [
"react",
"component",
"viz",
"chart",
"gear",
"ring",
"annulus"
],
"main": "./dist/components/GearListChart.js",
"repository": {
"type": "git",
"url": "https://github.com/noru/react-gear-chart.git"
},
"bugs": "https://github.com/noru/react-gear-chart/issues",
"scripts": {
"clean": "rimraf build",
"dev": "node ./src/devServer.js",
"build": "babel src --out-dir dist && npm run build-storybook",
"coverage": "NODE_ENV=test nyc mocha --compilers js:babel-core/register --require ./test/testHelper.js --recursive ./test",
"e2e": "node ./test/e2e/runner.js",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --ignore false --require ./test/testHelper.js --recursive ./test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@storybook/react": "^3.0.1",
"babel-cli": "^6.24.1",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-import": "^1.1.1",
"babel-plugin-strip-function-call": "^1.0.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-plugin-transform-react-constant-elements": "6.9.1",
"babel-plugin-transform-react-remove-prop-types": "0.2.9",
"babel-plugin-transform-runtime": "6.15.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"cat-names": "^1.0.2",
"chai": "3.5.0",
"chai-jquery": "2.0.0",
"chai-stats": "^0.3.0",
"chai-string": "^1.3.0",
"cheerio": "0.22.0",
"colors": "1.1.2",
"connect-history-api-fallback": "^1.3.0",
"console.table": "^0.8.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "2.0.1",
"css-loader": "0.24.0",
"enzyme": "^2.8.2",
"eslint": "4.18.2",
"eslint-plugin-react": "6.2.0",
"extract-text-webpack-plugin": "2.0.0-beta.3",
"jquery": "^3.2.1",
"jsdom": "9.4.5",
"mocha": "3.0.2",
"nightwatch": "^0.9.14",
"nyc": "^10.2.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.5.1",
"react-debounce-input": "^3.0.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"redbox-react": "^1.3.6",
"rimraf": "2.5.4",
"sinon": "^2.1.0",
"style-loader": "^0.18.2",
"webpack": "^2.5.1",
"webpack-dashboard": "0.1.8",
"webpack-dev-server": "^2.4.4",
"webpack-hot-middleware": "2.12.2",
"webpack-merge": "0.14.1"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash-es": "^4.17.4",
"react-motion": "^0.5.0",
"shortid": "^2.2.8",
"should-update": "^2.0.0"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"nyc": {
"extension": [
".jsx",
".es6",
".js"
],
"exclude": [],
"include": [
"src",
"node_modules/lodash-es/*.js"
]
}
}