-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.76 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
{
"name": "standup",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "webpack-dev-server --config ./webpack/webpack-dev.config.js --watch --colors",
"build": "rm -rf dist && webpack -p --config ./webpack/webpack-prod.config.js --colors && rm ./dist/assets/scripts/*.map",
"heroku-prebuild": "yarn add webpack -g && npm install --only=dev",
"heroku-postbuild": "rm -rf dist && webpack -p --config ./webpack/webpack-prod.config.js --colors",
"start": "pm2 start ./server.js",
"lint": "eslint src test webpack"
},
"keywords": [
"react",
"boilerplate",
"javascript",
"redux",
"webpack",
"json-api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VF19CMI/standup-frontend"
},
"author": "Vodafone Group Enterprise (Fingertips)",
"license": "UNLICENSED",
"dependencies": {
"autoprefixer": "^7.1.2",
"axios": "^0.16.2",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"fastclick": "^1.0.6",
"history": "^3.0.0",
"honeybadger-js": "^0.5.1",
"lodash": "^4.17.4",
"moment": "^2.19.4",
"normalize.css": "^7.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-ga": "^2.1.2",
"react-helmet": "^5.0.3",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.5",
"react-router": "^3.0.4",
"react-router-redux": "^4.0.5",
"react-toggle": "^4.0.2",
"reduce-reducers": "^0.1.2",
"redux": "^3.6.0",
"redux-json-api": "1.7.0",
"redux-thunk": "^2.2.0",
"signal-master": "xirdev/signalmaster",
"simplewebrtc": "^3.0.1"
},
"devDependencies": {
"@honeybadger-io/webpack": "^1.0.4",
"babel-core": "^6.23.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.23.0",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.1",
"git-revision-webpack-plugin": "^2.5.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.2.0",
"node-sass": "^4.7.2",
"postcss-loader": "^1.3.3",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.2",
"svg-sprite-loader": "^3.2.5",
"webpack": "^3.5.5",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-dev-server": "^2.7.1"
},
"engines": {
"node": "8.9.4"
}
}