-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.28 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.28 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
{
"name": "restfulnews",
"version": "0.0.1",
"main": "src",
"private": true,
"apidoc": {
"name": "RESTfulNews API",
"version": "0.1.4",
"description": "Open source news API for quants.",
"title": "Docs | RESTfulNews API",
"order": [
"User",
"Auth",
"Search",
"News"
],
"template": {
"withCompare": false
}
},
"scripts": {
"test": "tape src/**/*.spec.js | pino | tap-spec",
"dev": "cross-env NODE_ENV=development nodemon -i \"*.test.js\" . | pino -c",
"production": "pm2-docker start --raw process.yml",
"prod-test": "pm2 start process.yml",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"docs": "apidoc -i src -o docs && apidoc-markdown -p docs -o DOCS.md",
"postdocs": "opn docs/index.html",
"start": "npm run dev"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"devDependencies": {
"apidoc": "^0.16.1",
"apidoc-markdown": "^0.2.0",
"eslint-config-airbnb-base": "^12.0.2",
"nodemon": "^1.10.2",
"opn-cli": "^3.1.0"
},
"dependencies": {
"@sendgrid/mail": "^6.1.4",
"axios": "^0.17.1",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.1",
"body-parser": "^1.15.1",
"bodymen": "^1.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"cross-env": "^3.1.3",
"dot": "^1.1.2",
"dotenv-safe": "^4.0.4",
"eslint": "^4.8.0",
"eslint-plugin-import": "^2.7.0",
"express": "^4.13.4",
"fecha": "^2.3.3",
"google-auth-library": "^0.12.0",
"guardian-js": "^1.0.11",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.13.1",
"md5": "^2.2.1",
"mongoose": "^4.13.7",
"mongoose-create-unique": "^0.4.1",
"mongoose-keywords": "^0.3.1",
"nyt": "^0.1.0",
"passport": "^0.3.2",
"passport-custom": "^1.0.5",
"passport-http": "^0.3.0",
"passport-json": "^1.2.0",
"passport-jwt": "^2.1.0",
"pino": "^4.10.2",
"pm2": "^2.7.1",
"querymen": "^2.0.0",
"request": "^2.85.0",
"request-promise": "^4.1.1",
"sanitize-html": "^1.15.0",
"shortid": "^2.2.8",
"slack-node": "^0.1.8",
"slug": "^0.9.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"uuid": "^3.1.0",
"validator": "^9.1.1",
"zxcvbn": "^4.4.2"
}
}