This repository has been archived by the owner on Dec 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "maxup-api",
"version": "0.0.1-canary.0",
"description": "⚙ The API for maxup!",
"main": "app.js",
"repository": "maxup-sh/maxup-api",
"author": "Noah Prail <noah@prail.net>",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.0.1",
"aws-sdk": "^2.197.0",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cloudflare": "^2.4.0",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-jwt": "^5.3.0",
"express-rate-limit": "^2.11.0",
"helmet": "^3.11.0",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.6",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"nodemailer": "^4.4.2",
"nodemailer-express-handlebars": "^3.0.0",
"nodemon": "^1.15.0",
"promise-limit": "^2.5.0",
"uid-promise": "^1.0.0",
"uuid": "^3.2.1"
},
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "npm run eslint-report && npm run eslint",
"eslint-report": "eslint . -f node_modules/eslint-html-reporter/reporter.js -o tests/eslint.html || exit 0",
"eslint": "eslint .",
"docs": "apidoc -i api/ -o docs/ && cp -r tests/ docs/"
},
"devDependencies": {
"apidoc": "^0.17.6",
"eslint": "^4.18.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-html-reporter": "^0.5.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
},
"apidoc": {
"title": "maxup API Docs",
"url": "https://api.maxup.sh",
"sampleUrl": "https://api.maxup.sh"
}
}