-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "express_ts_boilerplate",
"version": "1.0.0",
"description": "Express Typescript Boiler Plate API Rest",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test jest --runInBand",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"dev:debug": "nodemon --legacy-watch --inspect src/app.ts",
"build": "ttsc",
"docker:dev": "nodemon --legacy-watch --inspect=0.0.0.0:3000 src/app.ts"
},
"author": "G-Fidalgo",
"license": "MIT",
"dependencies": {
"@types/morgan": "^1.9.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.1.6",
"ts-jest": "^26.5.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.12",
"typescript": "^4.1.3",
"typescript-transform-paths": "^2.2.2"
}
}