-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.06 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.06 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "rocket",
"version": "1.0.0",
"description": "Some API related experiment",
"main": "index.js",
"directories": {
"test": "test"
},
"bin": {
"ross": "./build/src/main.js"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"lint:check": "gts lint",
"lint:write": "gts fix",
"clean": "gts clean",
"compile": "tsc && tsc-alias",
"dev": "tsx watch ./src/main.ts",
"prepare": "husky",
"pretest": "npm run compile",
"posttest": "npm run lint:check",
"commitlint": "commitlint --edit",
"generate:sql": "drizzle-kit push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imdeepmind/rocket.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/imdeepmind/rocket/issues"
},
"homepage": "https://github.com/imdeepmind/rocket#readme",
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.7.5",
"@types/node-cache": "^4.1.3",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.2",
"gts": "^7.0.0",
"husky": "^9.1.7",
"pino-pretty": "^10.0.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.6.3",
"vitest": "^4.1.2"
},
"dependencies": {
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/redis": "^7.2.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.8.0",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"fastify": "^5.8.4",
"fastify-plugin": "^5.1.0",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"node-cache": "^5.1.2",
"pg": "^8.20.0",
"ulid": "^2.3.0"
}
}