-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
47
48
49
{
"name": "economic-indicators-cl",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc",
"start": "ts-node src/index.ts",
"build": "tsc && yarn start",
"test": "jest",
"coverage": "jest --coverage",
"format": "prettier --write \"./**/*.{ts,js}\"",
"check-format": "prettier -c \"./**/*.{ts,js}\"",
"lint": "yarn format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camipozas/economic-indicators-cl.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/camipozas/economic-indicators-cl/issues"
},
"homepage": "https://github.com/camipozas/economic-indicators-cl#readme",
"dependencies": {
"axios": "^1.6.2",
"cache-manager": "^4.1.0",
"cache-manager-redis-store": "^2.0.0",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/cache-manager": "^4.0.6",
"@types/jest": "^29.5.11",
"@types/supertest": "^6.0.2",
"@vercel/node": "^2.5.14",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
},
"volta": {
"node": "20.9.0",
"yarn": "1.22.0"
}
}