-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.08 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
{
"name": "koa-api-boilerplate",
"description": "A Koa Restful API Project",
"version": "1.0.0",
"main": "app.js",
"author": {
"name": "Beppe Karlsson",
"email": "beppe@live.se"
},
"repository": {
"url": "https://github.com/reftoken/api-boilerplate"
},
"keywords": [
"koa",
"restful",
"api"
],
"scripts": {
"start": "nodemon app/index.js",
"precommit": "lint-staged",
"test": "jest --detectOpenHandles --forceExit",
"coverage": "jest --collectCoverageFrom=app/**.js --coverage /app"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint"
]
},
"license": "MIT",
"dependencies": {
"@koa/cors": "^2.2.1",
"config": "^1.29.4",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"emailjs": "^2.2.0",
"fs-extra": "^5.0.0",
"jsonwebtoken": "^8.2.1",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-bouncer": "^6.0.4",
"koa-helmet": "^3.3.0",
"koa-jwt": "^3.3.2",
"koa-passport": "^4.0.1",
"koa-pino-logger": "^2.1.3",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"koa-static": "^4.0.2",
"memwatch-next": "^0.3.0",
"mongoose": "^5.5.0",
"node-schedule": "^1.3.0",
"nodemon": "^1.18.2",
"passport-custom": "^1.0.5",
"passport-facebook-token": "^3.3.0",
"passport-oauth2": "^1.4.0",
"passport-token-google": "^0.1.1",
"pino": "^5.0.3",
"statuses": "^1.4.0",
"websocket": "^1.0.26"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^24.7.1",
"lint-staged": "^7.2.0",
"pino-pretty": "^2.0.1",
"prettier": "^1.14.0",
"supertest": "^3.1.0"
}
}