-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1005 Bytes
/
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
{
"name": "API-TypeScript",
"version": "1.0.0",
"description": "TypeScript API Template",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development nodemon ./node_modules/.bin/ts-node ./src/server/server.ts",
"start": "ts-node build/server/index.js",
"build": "tsc -p ."
},
"repository": {
"git": "https://github.com/hpbonfim/Template-API-Typescript-V2"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.4.2",
"mongoose": "^5.9.15",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/http-status": "^1.1.2",
"@types/mongoose": "^5.7.21",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.5",
"typescript": "^3.9.3"
}
}