-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 925 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 925 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
29
30
31
32
33
34
35
36
{
"name": "cleaning-typescript",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"dev": "tsc && nodemon ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"build": "tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/dotenv": "^8.2.0",
"@types/express-validator": "^3.0.0",
"@types/http-errors": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"nodemon": "^2.0.20",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"mongoose": "^6.8.2",
"morgan": "^1.10.0",
"ts-node": "^10.9.1"
}
}