-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.29 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
122
123
124
125
126
127
128
{
"name": "founderlabinterns.com",
"version": "0.3.1",
"description": "founderlabinterns.com",
"main": "index.js",
"author": "Gwilym Humphreys (https://github.com/gwilymhumphreys)",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"start": "node index.js",
"start-dev": "eval $(cat .env) nodemon -w server -w shared index.js",
"start-staging": "eval $(cat .env) NODE_ENV=staging nodemon index.js",
"client-watch": "eval $(cat .env) node webpack/webpack-dev-server.js",
"dev": "npm run start-dev & npm run client-watch",
"lint": "eslint server shared",
"build": "rm -rf public/dist && webpack --verbose --progress --profile --colors --display-error-details --config webpack/prod.config.js",
"test": "eval $(cat test/.env) mocha test/**/*.tests.js",
"deploy-staging": "git checkout staging && git pull && git merge master && npm run build && git add . && git commit -am 'build' && git push && eb deploy",
"deploy-production": "git checkout production && git pull && git merge master && npm run build && git add . && git commit -am 'build' && git push && eb deploy",
"scaffold": "eval $(cat .env) node ./scaffold/run.js"
},
"dependencies": {
"babel": "^5.8.29",
"babel-core": "^5.0.0",
"babel-plugin-react-transform": "^1.1.1",
"babel-runtime": "~5.8.29",
"backbone": "^1.2.0",
"backbone-http": "^0.7.2",
"backbone-mongo": "^0.6.10",
"backbone-orm": "^0.7.13",
"backbone-rest": "^0.7.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.13.2",
"connect-redis": "^3.0.0",
"cookie-parser": "^1.3.5",
"express": "^4.13.2",
"express-session": "^1.11.3",
"fl-admin": "^0.10.0",
"fl-auth-react": "^0.10.0",
"fl-auth-redux": "^0.10.0",
"fl-auth-server": "^0.13.4",
"fl-backbone-sql": "^0.7.0",
"fl-backbone.nativeajax": "^0.4.3",
"fl-initdb": "^0.10.0",
"fl-react-server": "^0.1.0",
"fl-react-steps": "^0.10.0",
"fl-react-utils": "^0.11.0",
"fl-server-utils": "^0.11.0",
"fl-utils": "^0.1.0",
"history": "^1.17.0",
"immutable": "^3.7.4",
"inflection": "^1.7.2",
"invariant": "^2.2.0",
"kerberos": "0.0.17",
"lodash": "^4.13.1",
"moment": "^2.11.1",
"morgan": "^1.6.1",
"nodemailer": "^1.8.0",
"nodemailer-smtp-transport": "^1.0.3",
"pg": "^4.5.1",
"pretty-error": "^1.2.0",
"queue-async": "^1.0.7",
"quill": "^0.20.1",
"react": "^0.14.0",
"react-bootstrap": "^0.29.0",
"react-datetime": "^2.0.1",
"react-document-meta": "^2.0.0",
"react-dom": "^0.14.0",
"react-dropzone-s3-uploader": "^0.5.0",
"react-helmet": "^2.3.1",
"react-quill": "^0.4.1",
"react-redux": "^4.0.0",
"react-router": "^1.0.3",
"react-router-bootstrap": "^0.19.3",
"react-select": "^1.0.0-beta13",
"react-slider": "^0.6.0",
"react-transform-catch-errors": "^1.0.0",
"redbox-react": "1.1.1",
"redux": "^3.0.0",
"redux-form": "^3.0.11",
"redux-request-middleware": "^0.11.0",
"redux-router": "^1.0.0-beta8",
"redux-thunk": "^1.0.0",
"reselect": "^2.0.2",
"serialize-javascript": "^1.1.2",
"serve-favicon": "^2.3.0",
"sessionstore": "^1.2.5",
"superagent": "0.18.0",
"warning": "^2.1.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.2.0",
"autoprefixer-loader": "^3.1.0",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"bootstrap-sass": "^3.3.6",
"bootstrap-sass-loader": "^1.0.9",
"clean-webpack-plugin": "^0.1.6",
"css-loader": "^0.23.0",
"eslint": "^1.5.1",
"eslint-config-founderlab": "^0.1.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.4.2",
"expect": "^1.13.4",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.4",
"font-awesome": "^4.5.0",
"font-awesome-webpack": "0.0.4",
"imports-loader": "^0.6.5",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"node-sass": "^3.4.2",
"react-hot-loader": "^1.2.8",
"react-transform-hmr": "^1.0.1",
"sass-loader": "^3.1.2",
"strip-loader": "^0.1.1",
"style-loader": "^0.12.3",
"stylus-loader": "^1.4.2",
"url-loader": "^0.5.6",
"webpack": "^1.10.5",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "^1.10.1",
"webpack-hot-middleware": "^2.6.0"
}
}