-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
87 lines (87 loc) · 2.88 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
{
"name": "apoe4_api",
"version": "1.0.0",
"description": "APOE4 Web API",
"main": "lib/index.js",
"scripts": {
"start": "babel-node src/index.js",
"serve": "nodemon --exec babel-node src/server.js",
"build": "./node_modules/.bin/babel ./src --out-dir ./dist --ignore node_modules --copy-files",
"dev": "npm run build && nodemon dist/index.js",
"watch": "nodemon --exec babel-node src/index.js",
"apidoc": "apidoc -i src -o public/docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hnginternship5/apoe4_api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hnginternship5/apoe4_api/issues"
},
"homepage": "https://github.com/hnginternship5/apoe4_api#readme",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@sendgrid/mail": "^6.3.1",
"acl": "^0.4.11",
"app-root-path": "^2.1.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"crypto-random-string": "^1.0.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"faker": "^4.1.0",
"html-to-text": "^4.0.0",
"http-errors": "^1.7.1",
"jsonwebtoken": "^8.3.0",
"juice": "^5.0.1",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mongoose": "^5.3.6",
"mongoose-autopopulate": "^0.9.1",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.9.1",
"mustache": "^3.0.1",
"nodemailer": "^4.7.0",
"nodemailer-express-handlebars": "^3.0.0",
"passport": "^0.4.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-plus-token": "^2.1.0",
"passport-jwt": "^4.0.0",
"passport-local-mongoose": "^5.0.1",
"slugs": "^0.1.3",
"swagger-ui-express": "^4.0.1",
"uuid": "^3.3.2",
"validator": "^10.9.0",
"winston": "^3.1.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/joi": "^14.3.1",
"@types/lodash": "^4.14.118",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.3.1",
"@types/node": "^10.12.24",
"@types/passport-jwt": "^3.0.1",
"@types/winston": "^2.4.4",
"apidoc": "^0.17.7",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^7.0.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"nodemon": "^1.18.10",
"prettier": "^1.15.1"
}
}