-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "nodejs-nights-v2",
"version": "1.0.0",
"description": "Dogbook API",
"engines": {
"node": "~11.0.0",
"npm": "~6.4.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --no-warnings src/app.js",
"dev": "nodemon --no-warnings src/app.js | pino-pretty",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/strvcom/nodejs-nights-2018.git"
},
"author": "STRV Backend Crew",
"license": "MIT",
"bugs": {
"url": "https://github.com/strvcom/nodejs-nights-2018/issues"
},
"homepage": "https://github.com/strvcom/nodejs-nights-2018#readme",
"devDependencies": {
"@strv/eslint-config-javascript": "^8.3.1",
"eslint": "^5.7.0",
"nodemon": "^1.18.4",
"pino-pretty": "^2.2.2"
},
"dependencies": {
"bcrypt": "^3.0.2",
"dotenv": "^6.1.0",
"jsonschema": "^1.2.4",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.2",
"koa": "^2.6.1",
"koa-body": "^4.0.4",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"pino": "^5.8.0",
"ramda": "^0.25.0"
}
}