-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 KB
/
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
37
38
39
40
41
42
43
44
45
46
{
"name": "typescript-node-mongodb-rest-api",
"version": "1.0.0",
"description": "Aplicación para subir imágenes con Node,Express,Typescript,mongoDB",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saulwolfdev/typescript-node-mongodb-rest-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/saulwolfdev/typescript-node-mongodb-rest-api/issues"
},
"homepage": "https://github.com/saulwolfdev/typescript-node-mongodb-rest-api#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/fs-extra": "^8.1.0",
"@types/mongoose": "^5.7.13",
"@types/morgan": "^1.9.0",
"@types/multer": "^1.4.3",
"@types/node": "^13.13.2",
"@types/uuid": "^7.0.3",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
}
}