-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 974 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
34
35
36
37
38
39
40
41
{
"name": "scarlet-violet-api",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"start:dev": "ts-node-dev src/index.ts --respawn --transpileOnly",
"test": "jest ./test",
"build": "tsc src/index.ts --outDir dist"
},
"repository": {
"type": "git",
"url": "https://github.com/barbaraanger/scarlet-violet-api.git"
},
"keywords": [
"pokemon",
"scarlet",
"violet"
],
"author": "Bárbara Anger",
"license": "MIT",
"description": "",
"dependencies": {
"@types/node": "^20.8.10",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.6.3",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.4",
"@types/express": "^4.17.20",
"ts-node-dev": "^2.0.0"
}
}