forked from vicenteguedes/backend-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 713 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 713 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
27
28
{
"name": "@moovin/backend-nodejs",
"version": "1.0.0",
"description": "",
"license": "ISC",
"scripts": {
"dev": "nodemon --watch \"src/\" -e ts -r ts-node/register src/server.ts",
"prod": "node dist/server.js",
"build": "tsc && copyup ./src/*.yaml ./src/**/*.yaml dist"
},
"dependencies": {
"lodash": "^4.17.11",
"cors": "^2.8.5",
"express": "^4.16.4",
"body-parser": "^1.18.3",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/node": "^10.12.15",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"dotenv": "^6.1.0",
"nodemon": "1.18.7",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"copyfiles": "1.0.0"
}
}