-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "example-cats-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@sugo/body-parser-json": "^1.0.3",
"@sugo/logger": "^2.0.2",
"@sugo/mongodb": "^1.0.3",
"@sugo/mongodb-queryparams": "^1.3.2",
"@sugo/router": "^1.6.9",
"@sugo/server": "^3.0.1",
"helmet": "^3.18.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/helmet": "0.0.43",
"@types/node": "^11.13.10",
"dotenv": "^6.2.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"ts-node": "^8.1.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.4.5"
},
"scripts": {
"start": "ts-node -r dotenv/config src/",
"nodemon": "ts-node -r dotenv/config src/",
"build": "rimraf dist/ && tsc",
"test": "nyc mocha --exit --require dotenv/config --require ts-node/register --require source-map-support/register --recursive --timeout 10000 src/**/*.test.ts",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sugojs/example-cats-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sugojs/example-cats-api/issues"
},
"homepage": "https://github.com/sugojs/example-cats-api#readme"
}