-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 843 Bytes
/
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
{
"name": "pokemon-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/server.ts",
"start:dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/mongoose": "^5.10.3",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.22",
"@types/swagger-ui-express": "^4.1.3",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^5.0.0-alpha.8",
"express-validator": "^6.14.3",
"mongoose": "^5.11.14",
"multer": "^1.4.5-lts.1",
"swagger-ui-express": "^4.6.0"
}
}