-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "express-typescript-mongoose-starter",
"version": "1.0.0",
"description": "A starter for Node JS, Express, Typescript, Mongoose aplication",
"main": "server.js",
"scripts": {
"dev": "concurrently --kill-others \"npm run watch-ts\"",
"serve": "npm run build-ts & npm run start",
"build-ts": "tsc -p src",
"watch-ts": "tsc-watch -w -p src --onSuccess \"npm run start-dev\"",
"start": "node dist/server.js",
"start-dev": "NODE_ENV=development nodemon dist/server.js"
},
"keywords": [
"Node",
"JS",
"Express",
"Mongo",
"Mongoose",
"Typescript"
],
"author": "Matheus Davidson - MTDA",
"license": "ISC",
"dependencies": {
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.7",
"express": "^4.15.3",
"mongoose": "^4.11.5",
"morgan": "^1.8.2",
"path": "^0.12.7"
},
"devDependencies": {
"@types/express": "^4.0.36",
"@types/lodash": "^4.14.71",
"@types/mongoose": "^4.7.19",
"@types/node": "^8.0.17",
"concurrently": "^3.5.0",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"nodemon": "^1.11.0",
"tsc-watch": "^1.0.7",
"typescript": "^2.4.2"
}
}