-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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": "frank-gairal-bo",
"version": "3.2.0",
"main": "dist/index.js",
"author": "@gairal",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"deploy": "gcloud app deploy --project com-gairal-frank-22",
"dev": "bun run --hot --inspect ./src/index.ts",
"gcp-build": "npm run build",
"lint": "biome check",
"prepare": "husky",
"start": "node dist",
"test": "LOG_LEVEL=error vitest",
"test-cov": "bun run test --coverage"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tsconfig/node20": "^20.1.4",
"@types/koa": "^2.15.0",
"@types/koa-logger": "^3.1.5",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^22.5.4",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.0.5",
"firestore-vitest-mock": "^0.6.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.10",
"supertest": "^7.0.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"@google-cloud/firestore": "^7.9.0",
"@koa/cors": "^5.0.0",
"@koa/router": "^13.0.0",
"dotenv": "^16.4.5",
"koa": "^2.15.3",
"koa-helmet": "^7.0.2",
"koa-logger": "^3.2.1",
"winston": "^3.14.2"
},
"lint-staged": {
"*.{js,cjs,ts,json,md,lint}": ["bun lint --fix"]
}
}