-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
50
51
52
{
"name": "dashboard-backend",
"version": "2.0.0",
"description": "Backend of Student Dashboard of NITT",
"author": "Delta Force",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsx watch --env-file .env server/index.ts",
"start": "node --env-file .env dist/index.js",
"format": "prettier . --write",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "jest --runInBand",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@fastify/express": "^2.3.0",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"@fastify/type-provider-typebox": "^3.5.0",
"@sinclair/typebox": "^0.31.23",
"fastify": "^4.24.3",
"fastify-express": "^0.4.0",
"fastify-metrics": "^10.3.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"swagger-stats": "^0.99.7",
"typescript": "^5.3.2"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.8.8",
"@types/swagger-stats": "^0.95.11",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"mongodb-memory-server": "^9.1.1",
"pino-pretty": "^10.2.3",
"pinst": "^3.0.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^3.14.0"
},
"packageManager": "[email protected]"
}