-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.5 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
{
"name": "cityzens-webapp",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client:build": "webpack --mode development --config webpack-dev.js --watch true",
"client:build:prod": "webpack --mode production --config webpack-client-prod.js",
"server:build": "webpack --mode development --config webpack-server.js --watch true",
"server:build:prod": "webpack --mode production --config webpack-server-prod.js",
"start": "webpack-dev-server --config webpack-dev.js",
"start:server": "node --require dotenv/config ./build/server.js",
"init": "npm run client:build",
"eslint": "eslint src -c .eslintrc.json",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"build:prod": "npm run client:build:prod && npm run server:build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tapesec/CITYZENS-WEBAPP.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tapesec/CITYZENS-WEBAPP/issues"
},
"homepage": "https://github.com/tapesec/CITYZENS-WEBAPP#readme",
"dependencies": {
"algoliasearch": "^3.29.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"connect-ensure-login": "^0.1.1",
"cross-fetch": "^2.2.2",
"dotenv": "^6.0.0",
"dotenv-webpack": "^1.5.4",
"express": "^4.16.2",
"express-session": "^1.15.6",
"express-sslify": "^1.2.0",
"express-useragent": "^1.0.12",
"filestack-js": "^1.2.1",
"filestack-react": "^2.0.0",
"google-map-react": "^1.0.5",
"immutable": "^3.8.2",
"lodash.keyby": "^4.6.0",
"luxon": "^1.3.1",
"material-components-web": "^0.37.0",
"npm": "^5.10.0",
"passport": "^0.4.0",
"passport-auth0": "^1.0.0",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-custom-scroll": "^2.0.3",
"react-dom": "^16.2.0",
"react-gateway": "^3.0.0",
"react-loader-spinner": "^2.1.0",
"react-modal2": "^5.0.0",
"react-onclickoutside": "^6.7.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-prop-types": "^1.0.4",
"react-swipe": "^5.1.1",
"react-textarea-autosize": "^7.0.3",
"react-transition-group": "^2.4.0",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"rmwc": "^1.8.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.10",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"parallelshell": "^3.0.2",
"postcss": "^6.0.23",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"redux-devtools-extension": "^2.13.5",
"sass-loader": "^7.0.3",
"session-file-store": "^1.2.0",
"style-loader": "^0.21.0",
"svg-url-loader": "^2.3.1",
"url-loader": "^1.0.1",
"webpack": "^4.16.0",
"webpack-cli": "^2.0.13",
"webpack-node-externals": "^1.6.0",
"webpack-shell-plugin": "^0.5.0",
"webpack-source-map-support": "^2.0.1"
}
}