forked from ProjectSprint/Batch3Project3TestCase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "projectsprint-batch3-project1-testcase",
"version": "1.0.0",
"description": "test case for ProjectSprint program",
"type": "module",
"main": "main.js",
"scripts": {
"lint:fix": "eslint --fix",
"format:fix": "biome format --write",
"dev": "tsx watch src/main.ts | pino-pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectSprint/Batch3Project1TestCase.git"
},
"author": "nandanugg",
"license": "ISC",
"bugs": {
"url": "https://github.com/ProjectSprint/Batch3Project1TestCase/issues"
},
"homepage": "https://github.com/ProjectSprint/Batch3Project1TestCase#readme",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@eslint/js": "^9.18.0",
"@types/bcrypt": "^6.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/nedb": "^1.8.16",
"@types/node": "^22.13.1",
"@types/pouchdb": "^6.4.2",
"@types/pouchdb-adapter-memory": "^6.1.6",
"@typescript-eslint/parser": "^8.44.0",
"biome": "^0.3.3",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"pino-pretty": "^13.1.1",
"typescript-eslint": "^8.19.1",
"typescript-to-json-schema": "^0.6.1"
},
"dependencies": {
"@fastify/multipart": "^9.2.1",
"@fastify/type-provider-typebox": "^5.2.0",
"fastify": "^5.6.0",
"http-status-codes": "^2.3.0",
"multer": "^2.0.2",
"pouchdb": "^9.0.0",
"pouchdb-adapter-memory": "^9.0.0",
"pouchdb-find": "^9.0.0",
"tsx": "^4.20.5"
}
}