-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1007 Bytes
/
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
{
"name": "github-issue-viewer-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "21"
},
"scripts": {
"lint": "eslint src --ext .ts --fix",
"build": "rimraf ./dist && tsup src",
"start": "node dist/server.js",
"start:dev": "tsx watch src/server.ts",
"test:e2e": "vitest run --dir src/http",
"test:e2e:watch": "vitest --dir src/http"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/node": "^20.5.1",
"@types/supertest": "2.0.12",
"@vitest/coverage-v8": "0.34.6",
"@vitest/ui": "0.34.2",
"eslint": "^8.47.0",
"rimraf": "5.0.1",
"supertest": "6.3.3",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "0.34.2",
"vitest-tsconfig-paths": "3.4.1"
},
"dependencies": {
"@fastify/cors": "8.3.0",
"dotenv": "16.3.1",
"fastify": "^4.21.0",
"zod": "3.22.2"
}
}