-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 946 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
{
"name": "node-typescript-api",
"version": "2.0.1",
"description": "Minimal API using Expressjs, TypeScript and Mongoose.",
"main": "index.js",
"scripts": {
"start": "tsc && set DEBUG=express:* && node build/Main.js",
"start:prod": "tsc && NODE_ENV=production node build/Main.js",
"start:dev": "nodemon --exec npm start",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "Martin Avagyan",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.17.5",
"tslint": "^5.9.1"
},
"dependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.0.37",
"@types/mongoose": "^5.5.32",
"@types/morgan": "^1.7.35",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.3",
"dotenv": "8.2.0",
"express": "^4.16.1",
"mongoose": "^5.7.13",
"morgan": "^1.9.0",
"request": "^2.85.0",
"typescript": "^3.7.2"
},
"engines": {
"node": "12.13.0"
}
}