-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "express-ts-api-boilerplate",
"version": "1.0.1",
"description": "Express Typescript API Boilerplate",
"main": "src/index.ts",
"scripts": {
"start": "node -r ts-node/register --inspect ./src/index.ts",
"dev": "nodemon",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -p . --fix",
"format": "prettier \"src/**/*.ts\" -l \"warn\"",
"format:fix": "prettier --write \"src/**/*.ts\" -l \"warn\"",
"format:lint:fix": "prettier --write \"src/**/*.ts\" -l \"warn\" && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "https://github.com/jbutko/express-ts-api-boilerplate.git"
},
"keywords": [
"node",
"nodejs",
"typescript",
"express",
"expressjs",
"server",
"http-server"
],
"author": "Jozef Butko <[email protected]> (https://www.jozefbutko.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbutko/express-ts-api-boilerplate/issues"
},
"homepage": "https://github.com/jbutko/express-ts-api-boilerplate",
"dependencies": {
"compression": "^1.7.4",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"errorhandler": "^1.5.0",
"express": "^4.17.0",
"express-joi-validation": "^0.3.0",
"helmet": "^3.16.0",
"joi": "^14.3.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "0.0.36",
"@types/debug": "^4.1.4",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.16.1",
"@types/helmet": "0.0.43",
"@types/joi": "^14.3.3",
"@types/node": "^11.13.7",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"nodemon": "^1.18.11",
"prettier": "^1.17.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.4.5"
},
"engines": {
"node": ">=8.0.0"
}
}