-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
{
"name": "bss-web-graphql",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "vitest",
"test:ci": "vitest --run --reporter=verbose --coverage --coverage.reporter=lcov",
"test:int": " vitest --config vitest.int.config.ts",
"test:int:ci": "vitest --run --config vitest.int.config.ts --reporter=verbose --reporter=junit --outputFile.junit=reports/test-results.xml",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"release": "semantic-release"
},
"author": "",
"license": "ISC",
"type": "module",
"//": "Dependencies required at runtime",
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "6.1.0",
"@koa/bodyparser": "6.1.0",
"@koa/router": "15.5.0",
"dotenv": "17.4.2",
"helmet": "8.1.0",
"koa": "3.2.0",
"koa-compress": "5.2.1",
"pg": "8.20.0",
"postgraphile": "4.14.1"
},
"// build": "Dependencies required to build the project",
"devDependencies": {
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/koa": "3.0.2",
"@types/koa-compress": "4.0.7",
"@types/pg": "8.20.0",
"@types/supertest": "7.2.0",
"ts-node": "10.9.2",
"typescript": "6.0.3"
},
"// optional": "Dependencies that required to test and lint the project",
"optionalDependencies": {
"@biomejs/biome": "2.4.15",
"@vitest/coverage-v8": "4.1.6",
"@vitest/ui": "4.1.6",
"axios": "1.16.0",
"graphql-request": "7.4.0",
"nodemon": "3.1.14",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"supertest": "7.2.2",
"testcontainers": "11.14.0",
"vitest": "4.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/BSStudio/bss-web-graphql-backend.git"
},
"packageManager": "pnpm@10.33.4"
}