-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.27 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
{
"name": "react-solar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"moduleNameMapper": {
"\\.(jpg|png|gif|svg)$": "<rootDir>/__mocks__/fileMocks.js",
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js",
"watch": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot",
"test": "jest --coverage",
"test-watch": "jest --watch",
"start": "node server.js",
"heroku-postbuild": "webpack -p --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcrumbo/react-solar.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zcrumbo/react-solar/issues"
},
"homepage": "https://github.com/zcrumbo/react-solar#readme",
"dependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.17.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"chart.js": "^2.5.0",
"cors": "^2.8.3",
"create-react-class": "^15.5.3",
"css-loader": "^0.28.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-http-proxy": "^1.0.3",
"extract-text-webpack-plugin": "^2.1.0",
"fetch": "^1.1.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"moment": "^2.18.1",
"node-sass": "^4.5.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-chartjs-2": "^2.1.0",
"react-chartjs2": "^1.1.2",
"react-countup": "^2.0.3",
"react-dom": "^15.5.4",
"react-s-alert": "^1.3.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"sass-loader": "^6.0.3",
"superagent": "^3.5.2",
"tiny-jsonp": "^1.0.4",
"webpack": "^2.4.1",
"xml-loader": "^1.2.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.3",
"enzyme": "^2.8.2",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"react-addons-test-utils": "^15.5.1",
"react-test-renderer": "^15.5.4",
"webpack-dev-server": "^2.4.5"
}
}