-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 877 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
{
"name": "typescript-node-crud",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"public": "ncp ./src/public/ ./dist/public/",
"hbscopy": "ncp ./src/views/ ./dist/views/",
"build": "npm run clean && tsc && npm run hbscopy && npm run public",
"clean": "rimraf ./dist",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/express-handlebars": "0.0.32",
"@types/mongoose": "^5.5.2",
"@types/morgan": "^1.7.35",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"express": "^4.17.0",
"express-handlebars": "^3.1.0",
"mongoose": "^5.5.11",
"morgan": "^1.9.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.3"
}
}