-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1002 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1002 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
37
38
39
{
"name": "pokeapp-api",
"version": "1.0.0",
"description": "PokeApp Project API",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --collectCoverage",
"dev:build": "tsc",
"dev:serve": "nodemon -e js -w lib dist/main.js",
"start": "node dist/main.js"
},
"keywords": [],
"author": "rmauro@gmail.com",
"license": "ISC",
"dependencies": {
"axios": "^1.9.0",
"axios-cache-interceptor": "^1.8.0",
"axios-debug-log": "^1.0.0",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"memoizee": "^0.4.17",
"nodemon": "^3.1.10",
"pokenode-ts": "^1.20.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/memoizee": "^0.4.12",
"@types/node": "^22.15.3",
"@types/supertest": "^6.0.3",
"eslint-config-prettier": "^10.1.2",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}