-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.69 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": "battle-comm",
"version": "2.0.0",
"description": "This is the source code for Battle-Comm.net",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build-style.js && NODE_ENV=development node_modules/.bin/webpack -d --config webpack.dev.js",
"build:prod": "node build-style.js && NODE_ENV=production node_modules/.bin/webpack -p --config webpack.prod.js",
"compile:client": "NODE_ENV=production node_modules/.bin/webpack -p --config webpack.client.js",
"compile:server": "babel server --out-dir compiled-server",
"watch:client": "babel-watch server-client/index.jsx",
"watch:server": "NODE_ENV=development babel-watch server/index.js",
"start:client": "npm run compile:client && pm2 start server-client/compiled.js --name='BattleCommClient'",
"start:server": "NODE_ENV=production npm run compile:server && pm2 start compiled-server/index.js --name='BattleCommAPI'",
"stop:client": "pm2 stop 'BattleCommClient'",
"stop:server": "pm2 stop 'BattleCommAPI'",
"style": "node build-style.js",
"deploy:prod": "npm run build:prod && npm run start:server && npm run start:client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zdizzle6717/universal-react-movie-app.git"
},
"keywords": [
"javascript",
"universal",
"react",
"starter",
"kit",
"app",
"reactjs",
"router",
"express",
"hapijs"
],
"author": "Zack Anselm",
"license": "MIT",
"bugs": {
"url": "https://github.com/zdizzle6717/universal-react-movie-app/issues"
},
"homepage": "https://github.com/zdizzle6717/universal-react-movie-app#readme",
"dependencies": {
"attr-accept": "^1.1.0",
"axios": "^0.16.1",
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bad-words": "^1.5.1",
"bcrypt": "^1.0.2",
"boom": "^4.3.1",
"classnames": "^2.2.5",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"forever": "^0.15.2",
"foundation": "^4.2.1-1",
"foundation-sites": "^6.4.0",
"fs-extra": "^2.1.2",
"gm": "^1.23.0",
"hapi": "^16.1.1",
"hapi-auth-jwt2": "^7.2.4",
"hapi-swagger": "^7.7.0",
"hbs": "^4.0.1",
"history": "^4.6.1",
"hoek": "^4.1.0",
"imagemagick-stream": "^4.1.1",
"inert": "^4.2.0",
"joi": "^10.4.1",
"jquery": "^3.2.1",
"jsonwebtoken": "^7.4.0",
"keymirror": "^0.1.1",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"nodemailer": "^4.0.1",
"nouislider": "^9.2.0",
"pg": "^6.1.5",
"pg-hstore": "^2.3.2",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-ga": "^2.2.0",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"react-transition-group": "^1.1.3",
"react-twitter-widgets": "^1.3.0",
"redux": "^3.6.0",
"redux-devtools": "^3.4.0",
"redux-logger": "^3.0.1",
"redux-saga": "^0.14.8",
"redux-thunk": "^2.2.0",
"sequelize": "^3.30.4",
"socket.io": "^1.7.3",
"source-map-support": "^0.4.15",
"stripe": "^4.18.0",
"vision": "^4.1.1",
"wnumb": "^1.1.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.1",
"babel-watch": "^2.0.6",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.10.3",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"kexec": "^2.0.2",
"node-sass": "^4.5.3",
"pm2": "^2.4.5",
"postcss": "^5.2.17",
"webpack": "^2.4.1"
}
}