-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.42 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": "d3_experiments",
"version": "0.0.1",
"description": "A quick node app to learn d3",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.prod.js",
"development": "cross-env NODE_ENV=development nodemon ./backend/index.js",
"debug": "cross-env NODE_ENV=development nodemon --debug ./backend/index.js",
"production": "cross-env NODE_ENV=production nodemon ./backend/index.js",
"integration": "cross-env NODE_ENV=production webpack --config ./webpack.config.test.js",
"testserver": "cross-env NODE_ENV=test nodemon ./backend/index.js"
},
"repository": {
"type": "git",
"url": "."
},
"keywords": [
"d3",
"data",
"visualization"
],
"author": "Gopiandcode (Kiran Gopinathan)",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongo": "^2.0.0",
"cors": "^2.8.4",
"cross-env": "^5.1.3",
"express": "^4.16.2",
"express-session": "^1.15.6",
"method-override": "^2.3.10",
"mongoose": "^4.13.4",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"request": "^2.83.0"
},
"devDependencies": {
"axios": "^0.17.1",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react-router": "3",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"url-loader": "^0.6.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"detect-node": "^2.0.3",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"mocha": "^4.0.1",
"module-resolver": "^1.0.0",
"node-sass": "^4.6.0",
"nodemon": "^1.12.1",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"victory": "^0.24.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
}
}