-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.12 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
{
"name": "node-ts-mongo",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"private": true,
"author": "Toufiq (https://twitter.com/burningraven06)",
"description" : "Using Typescript to create A Node/Express Application with MongoDB Connection, CSV Import/Export & Docker Container",
"keywords" : ["nodejs","typescript","tsc","mongodb","mongoose","js","javascript","multer","file-upload","csv","json2csv","csv2json","csv-export","csv-importer","docker","docker-image","docker-compose"],
"dependencies": {
"@types/express": "^4.16.0",
"@types/mongoose": "^5.2.19",
"@types/multer": "^1.3.7",
"@types/pug": "^2.0.4",
"body-parser": "^1.18.3",
"csvtojson": "^2.0.8",
"express": "^4.16.4",
"json2csv": "^4.3.0",
"mongoose": "^5.3.3",
"multer": "^1.4.1",
"pug": "^2.0.3",
"typescript": "^3.1.6"
},
"scripts": {
"watch-ts": "tsc -w",
"watch-js": "nodemon ./dist/server.js",
"build": "tsc",
"start-app" : "yarn watch-ts && yarn watch-js",
"dev": "ts-node ./src/server.ts",
"start": "node ./dist/server.js",
"production": "tsc && yarn start"
}
}