forked from kevquincke/node-api-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.21 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": "node-api-base",
"version": "1.1.0",
"description": "API boilerplate project for NodeJS with Typescript",
"main": "dist/src/server.js",
"engines": {
"node": "10.3.0"
},
"scripts": {
"build": "rm -rf dist/ && webpack",
"dev": "npm-run-all --parallel watch:server watch:build",
"watch:server": "nodemon \"./dist/bundle.js\" --watch \"./build\" ",
"watch:build": "webpack --watch",
"start": "node dist/bundle.js",
"postinstall": "npm run build",
"test": "jest --verbose --coverage",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/kevquincke/node-api-base.git"
},
"keywords": [
"nodejs",
"typescript",
"boilerplate",
"api",
"base",
"starter",
"kit"
],
"author": "Kevin Quincke",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevquincke/node-api-base/issues"
},
"homepage": "https://github.com/kevquincke/node-api-base#readme",
"devDependencies": {
"@types/bcrypt": "^2.0.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/helmet": "^0.0.42",
"@types/jest": "^23.3.2",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"@types/supertest": "^2.0.6",
"@types/winston": "^2.4.4",
"jest": "^23.5.0",
"npm-run-all": "^4.1.3",
"supertest": "^3.3.0",
"ts-jest": "^23.1.4",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"class-validator": "^0.9.1",
"compression": "^1.7.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-async-errors": "^3.0.0",
"helmet": "^3.13.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"pg": "^7.4.3",
"pug": "^2.0.3",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.7",
"winston": "^3.1.0"
}
}