-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.63 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
{
"name": "Leadmrktr",
"version": "0.0.1",
"description": "Leadmrktr webapp",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack.local.config.js",
"build:dev": "rimraf ./build-dev && NODE_ENV=development webpack --config webpack.dev.config.js --color --progress ",
"start:dev": "webpack-dev-server --config webpack.dev.config.js --content-base build-dev/ --port 9000 --history-api-fallback",
"build:prod": "rimraf ./build-prod && NODE_ENV=production webpack --config webpack.prod.config.js --color --progress",
"start:prod": "webpack-dev-server --config webpack.prod.config.js --content-base build-prod/ --port 9000 --history-api-fallback"
},
"repository": "git@github.com:leadmrktr/neo.git",
"author": "Syam S Pillai <syam.sp0965@gmail.com> (https://github.com/syam1123)",
"contributors": [],
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"create-index": "^2.3.0",
"css-loader": "^0.28.4",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"file-loader": "^1.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^4.1.0",
"jsdoc": "^3.5.5",
"json-loader": "^0.5.7",
"rimraf": "^2.5.4",
"standard": "^10.0.3",
"style-loader": "^0.20.1",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.2.1"
},
"dependencies": {
"axios": "^0.16.2",
"check-types": "^7.3.0",
"history": "^4.6.3",
"humps": "^2.0.1",
"js-cookie": "^2.1.4",
"md5": "^2.2.1",
"prop-types": "^15.5.10",
"rc-dialog": "^7.1.3",
"rc-select": "^7.7.1",
"rc-slider": "^8.3.1",
"react": "^16.2.0",
"react-cookie": "^2.0.7",
"react-dom": "^16.2.0",
"react-dropzone": "^4.2.7",
"react-helmet": "^5.2.0",
"react-highcharts": "^16.0.2",
"react-hot-loader": "^3.0.0-beta.7",
"react-loadable": "^5.4.0",
"react-page-visibility": "^1.0.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"react-transition-group": "^2.2.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sanitize.css": "5.0.0",
"styled-components": "^3.1.6"
},
"standard": {
"parser": "babel-eslint"
}
}