-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.85 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
{
"name": "Urban-Renewal",
"version": "0.0.1",
"description": "For justice",
"engines": {
"node": "6.9.5"
},
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --colors",
"buildmin": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --colors --optimize-minimize",
"hotbuild": "npm run build -- --watch",
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base build --watch",
"start": "cross-env DEBUG=server,route,auth,ws DEBUG_COLORS=1 AUTHENTICATION=false node server.js",
"postinstall": "npm run build"
},
"author": "pentatonic, duidae",
"license": "ISC",
"devDependencies": {},
"dependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"body-parser": "^1.17.0",
"can-use-dom": "^0.1.0",
"cross-env": "^3.2.4",
"debug": "^2.6.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"express": "^4.14.1",
"express-session": "^1.15.1",
"express-socket.io-session": "^1.3.2",
"helmet": "^3.4.1",
"html-webpack-plugin": "^2.28.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-facebook": "^4.0.13",
"react-google-maps": "^6.3.0",
"react-modal-dialog": "^4.0.7",
"react-router": "^3.0.2",
"socket.io": "^1.7.3",
"unique-random": "^1.0.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
}
}