-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.58 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "connus",
"version": "0.3.1",
"description": "Connus",
"main": "server.js",
"scripts": {
"start": "pm2-dev ./config/ecosystem.config.js",
"start:prod": "pm2 start ecosystem.json --env production",
"start:dev": "pm2 start ecosystem.json --env staging",
"build:prod": "webpack --config ./config/webpack.prod.js",
"build:dev": "webpack --config ./config/webpack.dev.js",
"sync:prod": "aws s3 sync ./dist s3://connus --delete --exclude .DS_Store --acl public-read ",
"reload:prod": "pm2 reload all -i max",
"test": "echo \"Error: no test specified\" && exit 0",
"invalidate": "aws cloudfront create-invalidation --distribution-id EM10IZXCVQFDQ --paths /index.html",
"lint:staged": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts"
},
"author": "nure,",
"license": "UNLICENSED",
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"base64-img": "^1.0.4",
"base64url": "^3.0.0",
"bcrypt-nodejs": "^0.0.3",
"bcryptjs": "^2.4.3",
"clean-webpack-plugin": "^0.1.18",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"css-loader": "^0.28.11",
"dom-to-image": "^2.6.0",
"email-verification": "^0.4.6",
"eslint": "^4.19.1",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"file-saver": "^1.3.8",
"helmet": "^3.12.1",
"hpp": "^0.2.2",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.0",
"imagemin": "^5.3.1",
"imagemin-mozjpeg": "^7.0.0",
"imagemin-pngquant": "^5.1.0",
"json2csv": "^4.1.6",
"jsonwebtoken": "^8.3.0",
"leaflet": "^1.3.1",
"mime": "^2.3.1",
"mongoose": "^5.1.4",
"mongoose-to-csv": "^0.1.1",
"mosca": "^2.8.3",
"multer": "^1.3.0",
"node-sass": "^4.9.2",
"node-watch": "^0.5.8",
"openalpr_api": "^2.0.1",
"prettier": "^1.14.2",
"prop-types": "^15.6.1",
"python-shell": "^0.5.0",
"query-string": "^5.1.0",
"react": "16.4.0",
"react-day-picker": "^7.1.9",
"react-dom": "16.4.0",
"react-electron-web-view": "^2.0.1",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.3.0",
"react-leaflet": "^1.9.1",
"react-loadable": "^5.4.0",
"react-paginate": "^5.2.4",
"react-particles-js": "^2.2.0",
"react-player": "^1.6.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-slick": "^0.20.0",
"recharts": "^1.0.0-beta.10",
"redux": "^4.0.0",
"request": "^2.87.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.3",
"shortid": "^2.2.8",
"slick-carousel": "^1.8.1",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"style-loader": "^0.21.0",
"video.js": "^6.9.0",
"videojs-flash": "^2.1.0",
"webpack": "^4.11.1",
"webpack-cli": "^2.1.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.2",
"webpack-pwa-manifest": "^3.6.2",
"webpack-stylish": "^0.1.8",
"winston": "^2.4.2",
"workbox-webpack-plugin": "^3.2.0"
},
"devDependencies": {
"eslint-plugin-react": "^7.9.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"offline-plugin": "^4.9.0",
"pm2": "^3.0.3",
"pre-commit": "^1.2.2",
"process": "^0.11.10"
}
}