-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 812 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 812 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
{
"name": "node-mvc-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node-dev --rs --poll ./src/index.ts",
"build": "tsc"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "^18.7.14",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@types/color": "^3.0.3",
"@types/mongoose": "^5.11.97",
"@types/pino-pretty": "^4.7.5",
"@types/validator": "^13.7.6",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"pino": "^8.6.1",
"pino-pretty": "^9.1.1",
"typescript": "^4.8.2"
}
}