-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "proxy-mate",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"author": {
"name": "Jose Robinson",
"url": "https://joserobinson.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jrobinsonc/proxy-mate.git"
},
"scripts": {
"check-types": "yarn tsc --noEmit --pretty",
"lint": "eslint '{src,tests}/**/*.ts'",
"lint:fix": "eslint '{src,tests}/**/*.ts' --fix",
"dev": "tsx watch src/server.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@fastify/autoload": "^6.0.3",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.1",
"pino-pretty": "^13.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}