-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
121 lines (121 loc) · 3.8 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
117
118
119
120
121
{
"name": "isomorphic-react-auth-boilerplate",
"version": "0.0.1",
"description": "Simple Isomorphic app with passport auth flow",
"dependencies": {
"async": "^0.9.0",
"babel": "^5.1.10",
"babel-core": "^5.1.10 ",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.0.12",
"bcrypt-nodejs": "latest",
"body-parser": "1.2.0",
"classnames": "^1.2.0",
"compression": "1.2.0",
"connect-flash": "^0.1.1",
"connect-gzip-static": "^1.0.0",
"cookie-parser": "^1.3.3",
"debug": "^2.0.0",
"del": "^1.1.1",
"express": "^4.12.3",
"express-session": "^1.10.1",
"express-slash": "^2.0.1",
"extract-text-webpack-plugin": "^0.5.0",
"fluxible": "^0.4.6",
"handlebars": "^3.0.1",
"imports-loader": "0.6.3",
"lodash": "^3.7.0",
"medium-editor-webpack": "^0.2.0",
"moment": "^2.10.2",
"mongoose": "^4.0.1",
"morgan": "^1.5.2",
"passport": "^0.2.1",
"passport-local": "^1.0.0",
"promptly": "^0.2.1",
"proxy-middleware": "^0.11.0",
"react": "0.13.x",
"react-bootstrap": "^0.20.3",
"react-bootstrap-modal": "^1.0.2",
"react-document-title": "^1.0.2",
"react-router": "bobpace/react-router#transitionContext",
"rsvp": "^3.0.18",
"serialize-javascript": "^1.0.0",
"serve-favicon": "^2.1.6",
"strip-loader": "^0.1.0",
"superagent": "0.21.0",
"through2": "^0.6.3",
"uglify-js": "^2.4.20",
"url": "^0.10.3",
"uuid": "2.0.1",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0",
"xdate": "^0.8.0"
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel-eslint": "^3.0.1",
"browser-sync": "^2.6.4",
"compression-webpack-plugin": "^0.2.0",
"css-loader": "^0.9.1",
"eslint": "^0.20.0",
"eslint-plugin-react": "^2.2.0",
"extract-text-webpack-plugin": "^0.5.0",
"gulp": "^3.8.9",
"gulp-autoprefixer": "^2.1.0",
"gulp-cached": "^1.0.4",
"gulp-changed": "^1.2.1",
"gulp-eslint": "^0.11.1",
"gulp-filter": "^1.0.2",
"gulp-gzip": "^1.1.0",
"gulp-less": "^3.0.2",
"gulp-load-plugins": "^0.9.0",
"gulp-minify-css": "^0.3.11",
"gulp-nodemon": "*",
"gulp-notify": "^2.2.0",
"gulp-rev": "^3.0.1",
"gulp-run": "^1.6.7",
"gulp-s3": "^0.3.0",
"gulp-shell": "^0.4.1",
"gulp-sourcemaps": "^1.2.7",
"gulp-util": "^3.0.2",
"gulp-webpack": "^1.3.2",
"less": "^2.3.1",
"less-loader": "^2.2.0",
"progressbar": "^1.0.3",
"react-hot-loader": "^1.1.1",
"strip-loader": "^0.1.0",
"style-loader": "^0.8.3",
"vinyl-source-stream": "^1.0.0",
"webpack-dev-server": "1.6.4",
"webpack-stats-plugin": "0.0.4"
},
"scripts": {
"server-only": "DEBUG=*,-babel,-express*,-socket.io*,-engine*,-connect*,-morgan,-Fluxible*,-send,-eslint* && gulp server-only --serverOnly",
"client": "DEBUG=*,-babel,-express*,-socket.io*,-engine*,-connect*,-morgan,-Fluxible*,-send,-eslint* && gulp dev --clientOnly --admin",
"iso": "DEBUG=*,-babel,-express*,-socket.io*,-engine*,-connect*,-morgan,-Fluxible*,-send,-eslint* && gulp dev --iso --admin",
"prod": "NODE_ENV=production && REACT_SERVER_RENDER=true && DEBUG=-* && gulp build --prod && node index",
"setup": "DEBUG=*,-babel && node ./setup.js",
"start": "npm cache clean && npm install && npm run setup --no-spin && npm run client"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/leifdalan/iso-auth-boilerplate.git"
},
"keywords": [
"isomorphic",
"react",
"passport",
"authentication",
"boilerplate",
"fluxible",
"react-router"
],
"author": "Leif Dalan",
"license": "MIT",
"bugs": {
"url": "https://github.com/leifdalan/iso-auth-boilerplate/issues"
},
"homepage": "https://github.com/leifdalan/iso-auth-boilerplate"
}