forked from Shyam-Chen/Express-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.77 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.77 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
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
{
"name": "Backend-Starter-Kit",
"version": "1.0.0",
"description": "A boilerplate for Node.js, Express, Mongoose, Heroku, mLab, Nodemon, PM2, and Babel.",
"engines": {
"node": "8"
},
"scripts": {
"start": "nodemon src/api.js --exec babel-node",
"test": "jest \"src/.*\\.js$\" --coverage --forceExit",
"build": "babel src -d dist",
"typed": "flow-typed install",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shyam-Chen/Backend-Starter-Kit.git"
},
"keywords": [
"Node.js"
],
"author": "Yen-cheng Chen, 陳彥澄",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shyam-Chen/Backend-Starter-Kit/issues"
},
"homepage": "https://github.com/Shyam-Chen/Backend-Starter-Kit#readme",
"dependencies": {
"@tensorflow/tfjs": "0.12.4",
"@tensorflow/tfjs-node": "0.1.9",
"apollo-server-express": "2.0.0",
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"chalk": "2.4.1",
"cloudinary": "1.11.0",
"compression": "1.7.3",
"connect-redis": "3.3.3",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"express": "4.16.3",
"express-flash": "0.0.2",
"express-graphql": "0.6.12",
"express-history-api-fallback": "2.2.1",
"express-session": "1.15.6",
"formidable": "1.2.1",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"helmet": "3.13.0",
"joi": "13.5.2",
"jsonwebtoken": "8.3.0",
"lodash": "4.17.10",
"merge-graphql-schemas": "1.5.3",
"mongoose": "5.2.6",
"morgan": "1.9.0",
"node-schedule": "1.3.0",
"nodemailer": "4.6.7",
"passport": "0.4.0",
"passport-facebook": "2.1.1",
"passport-google-oauth20": "1.0.0",
"passport-jwt": "4.0.0",
"passport-twitter": "1.0.4",
"pg": "7.4.3",
"pg-hstore": "2.3.2",
"pm2": "3.0.3",
"raven": "2.6.3",
"redis": "2.8.0",
"rendertron-middleware": "0.1.2",
"request": "2.87.0",
"request-promise": "4.2.2",
"rxjs": "6.2.2",
"sequelize": "4.38.0",
"socket.io": "2.1.1",
"socket.io-redis": "5.2.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-jest": "23.4.2",
"babel-plugin-root-import": "6.1.0",
"babel-preset-env": "1.7.0",
"babel-preset-flow": "6.23.0",
"babel-preset-stage-0": "6.24.1",
"codecov": "3.0.4",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-import-resolver-babel-plugin-root-import": "1.1.1",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-import": "2.13.0",
"faker": "4.1.0",
"flow-bin": "0.74.0",
"flow-typed": "2.5.1",
"jest": "23.4.2",
"nodemon": "1.18.3",
"rimraf": "2.6.2",
"supertest": "3.1.0"
}
}