-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "keycode",
"version": "0.1.0",
"main": "start.js",
"scripts": {
"build": "webpack --config webpack.config.production.js",
"prod": "npm run build && NODE_ENV=prod npm start",
"dev": "node webpack-dev-server.js & PORT=3001 nodemon start.js -e js",
"lint": "eslint ./{components,stores,actions,api,config}/*.js ./{components,stores,actions,api,config}/**/*.js app.js client.js routes.js server.js start.js",
"start": "node start.js"
},
"dependencies": {
"babel": "^5.4.7",
"body-parser": "^1.6.4",
"composable-middleware": "^0.3.0",
"compression": "^1.5.1",
"cookie-parser": "^1.4.0",
"csurf": "^1.6.3",
"debug": "^2.0.0",
"dotenv": "^1.2.0",
"express": "^4.3.2",
"express-jwt": "^3.1.0",
"express-state": "^1.2.0",
"fluxible": "^0.5.0",
"fluxible-addons-react": "^0.1.6",
"fluxible-router": "^0.2.0",
"github": "^0.2.4",
"gsap": "^1.18.0",
"jsonwebtoken": "^5.0.5",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"nodemailer": "^1.5.0",
"passport": "^0.3.0",
"passport-github": "^1.0.0",
"pg": "^4.4.2",
"pg-hstore": "^2.3.2",
"q": "^1.4.1",
"react": "^0.13.0",
"sequelize": "^3.11.0",
"serialize-javascript": "^1.0.0",
"serve-favicon": "^2.1.6",
"superagent": "^1.4.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.1.3",
"bundle-loader": "^0.5.0",
"css-loader": "^0.18.0",
"eslint": "^1.6.0",
"eslint-config-zavatta": "^1.1.4",
"eslint-config-zavatta-react": "^1.1.2",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.8.2",
"json-loader": "^0.5.1",
"node-sass": "^3.3.3",
"nodemon": "^1.2.1",
"react-hot-loader": "^1.2.8",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"webpack": "^1.4.12",
"webpack-dev-server": "^1.6.5"
}
}