-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "koa-test-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon .",
"snyk": "snyk test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielstaleiny/koa.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielstaleiny/koa/issues"
},
"homepage": "https://github.com/danielstaleiny/koa#readme",
"dependencies": {
"boom": "^7.1.1",
"co-body": "^5.1.1",
"dotenv": "^5.0.0",
"koa": "^2.5.0",
"koa-helmet": "^3.3.0",
"koa-pino-logger": "^2.1.1",
"koa-router": "^7.4.0",
"mongoose": "^5.0.6",
"uuid": "^3.2.1"
},
"devDependencies": {
"jest": "^21.2.1",
"koa-logger": "^3.1.0",
"nodemon": "^1.15.1",
"snyk": "^1.69.9",
"supertest": "^3.0.0"
},
"prettier": {
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"bracketSpacing": true
}
}