-
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) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 826 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": "gallery-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"cls": "rimraf dist",
"clear": "rm -rf dist",
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/fs-extra": "^9.0.11",
"@types/mongoose": "^5.10.5",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
},
"dependencies": {
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"mongoose": "^5.12.11",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"uuid": "^8.3.2"
}
}