forked from FaztWeb/typescript-mongodb-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 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
35
36
{
"name": "typescript-mongodb-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"dev": "ts-node-dev --respawn 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",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@typegoose/typegoose": "^9.7.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-handlebars": "^6.0.5",
"mongoose": "^6.2.10",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"zod": "^3.14.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-handlebars": "5.3.1",
"@types/mongoose": "^5.11.96",
"@types/node": "^17.0.23",
"ncp": "^2.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
}
}