This repository was archived by the owner on Aug 17, 2020. It is now read-only.
forked from mattlg24/q3-project-justapose
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 KB
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
{
"name": "justapose",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --content-base public --history-api-fallback",
"start:prod": "webpack && node ./bin/www",
"knex": "knex",
"heroku-postbuild": "knex migrate:latest"
},
"dependencies": {
"axios": "^0.15.2",
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"body-parser": "~1.15.2",
"cloudinary": "^1.4.4",
"compression": "^1.6.2",
"cookie-parser": "~1.4.3",
"cookie-session": "^2.0.0-alpha.2",
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"express": "~4.14.0",
"formidable": "^1.0.17",
"hbs": "~4.0.1",
"history": "^4.4.0",
"if-env": "^1.0.0",
"knex": "^0.12.6",
"morgan": "~1.7.0",
"passport": "^0.3.2",
"passport-google-oauth20": "^1.0.0",
"pg": "^6.1.0",
"rc-calendar": "^7.5.1",
"react": "^15.3.2",
"react-cookie": "^0.4.8",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"serve-favicon": "~2.3.0",
"webpack": "^1.13.3"
},
"engines": {
"node": "7.1.0"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"dotenv": "^2.0.0",
"http-server": "^0.8.5",
"webpack-dev-server": "^1.14.1"
}
}