forked from HermanL02/Koii-Task-Funder-Express
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 699 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 699 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
{
"name": "coingecko-mock-api",
"version": "1.0.0",
"description": "Mock implementation of CoinGecko API",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@_koii/create-task-cli": "^1.1.3-beta.1",
"axios": "^1.7.7",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"morgan": "^1.10.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/morgan": "^1.9.4",
"@types/node-cache": "^4.1.3",
"@types/supertest": "^6.0.3",
"supertest": "^7.1.1",
"typescript": "^5.8.3",
"vitest": "^3.2.2"
}
}