-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 777 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 777 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": "gallery-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/index.ts",
"prebuild": "npx tscp",
"build": "npx tsc",
"start": "node ./dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.3.2",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mongoose": "^8.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.7",
"@types/multer": "^1.4.9",
"@types/node": "^20.8.10",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-cp": "^0.1.9"
}
}