forked from dalenguyen/rest-api-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 674 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 674 Bytes
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
{
"name": "crm",
"version": "1.0.0",
"description": "An API built with NodeJS, Express, MongoDB and TypeScript",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "ts-node ./lib/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"keywords": [
"Dale",
"Nguyen"
],
"author": "Dale Nguyen <dungnq@itbox4vn.com> (http://dalenguyen.me)",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.1",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongoose": "^5.7.5",
"nodemon": "^1.18.9"
}
}