This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
{
"name": "base-api",
"version": "1.0.0",
"description": "Base express-TS-Sequelize API",
"private": true,
"directories": {
"test": "tests"
},
"scripts": {
"prod": "tsc",
"postprod": "pm2 start build/app.js",
"dev": "ts-node ./src/app.ts",
"start": "nodemon --debug=3001",
"test": "echo \"Error: no test specified\" && exit 0"
},
"main": "",
"keywords": [
"NodeJS",
"TypeScript",
"Sequelize",
"API"
],
"author": "Bruno Souza",
"license": "MIT",
"devDependencies": {
"@decorators/express": "^2.3.0",
"@types/async": "^3.0.1",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/body-parser": "^1.17.0",
"@types/compression": "^1.0.0",
"@types/debug": "4.1.4",
"@types/dotenv": "^6.1.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.17",
"@types/morgan": "^1.7.36",
"@types/node": "^12.7.1",
"@types/request": "^2.48.2",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.8",
"debug": "latest",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/deimonhigh/base-api"
},
"dependencies": {
"@tsed/common": "^5.25.1",
"@tsed/core": "^5.25.1",
"app-root-path": "^2.2.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"ejs": "^2.6.2",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"pg": "^7.12.0",
"pm2": "^3.5.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.12.3",
"sequelize-typescript": "^0.6.11"
}
}