-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.26 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
{
"name": "emerald-compassionate-action-network-client",
"version": "1.0.0",
"description": "Front End for ECAN H4C 2018",
"main": "index.js",
"repository": "[email protected]:rajansawhney/nerds-of-a-feather.git",
"author": "CBT Development",
"license": "MIT",
"private": false,
"scripts": {
"build:webpack": "CONFIG_ENV=production webpack --colors --progress --config webpack.config.js --mode production",
"build": "npm run clean && npm run build:webpack",
"start:webpack": "webpack-dev-server --colors --progress --hot --open --config webpack.config.js --mode development --host 0.0.0.0",
"start": "npm run start:webpack",
"clean": "rm -rf ./dist",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"dependencies": {
"axios": "^0.18.0",
"babel": "^6.23.0",
"babel-eslint": "^8.2.6",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.2.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"eslint": "4.18.1",
"eslint-config-cbtnuggets": "^7.0.5",
"eslint-plugin-es6": "^1.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"history": "^4.7.2",
"lodash": "^4.17.10",
"macaddress": "^0.2.9",
"moment": "^2.22.1",
"node-sass": "^4.8.3",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react": "^16.3.1",
"react-bootstrap": "^1.0.0-beta.5",
"react-calendar": "^2.14.0",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-static-google-map": "^0.5.1",
"react-vertical-timeline-component": "^2.3.1",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.4.2",
"redux-form-validators": "^3.0.1",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"thunk": "^0.0.1",
"url-loader": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.1"
}
}