-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.98 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
53
54
55
56
57
58
59
60
61
{
"name": "bss-web-graphql",
"version": "0.0.0-development",
"description": "",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"test": "vitest",
"test:ci": "vitest --run --reporter=verbose --reporter=junit --outputFile.junit=reports/test-results.xml",
"test:coverage": "vitest --run --reporter=verbose --coverage --coverage.reporter=lcov --reporter=html --outputFile.html=reports/index.html",
"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 format .",
"lint:fix": "biome format . --write",
"semantic-release": "semantic-release"
},
"author": "",
"license": "ISC",
"type": "module",
"//": "Dependencies required at runtime",
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "6.1.0",
"dotenv": "16.4.5",
"koa": "2.15.3",
"koa-bodyparser": "4.4.1",
"koa-compress": "5.1.1",
"koa-helmet": "7.1.0",
"koa-router": "13.0.1",
"postgraphile": "4.13.0"
},
"// build": "Dependencies required to build the project",
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "4.3.12",
"@types/koa-compress": "4.0.6",
"@types/koa-router": "7.4.8",
"@types/supertest": "6.0.2",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"// optional": "Dependencies that required to test and lint the project",
"optionalDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "2.1.5",
"@vitest/ui": "2.1.5",
"axios": "1.7.7",
"graphql-request": "6.1.0",
"nodemon": "3.1.7",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"supertest": "7.0.0",
"testcontainers": "10.14.0",
"vitest": "2.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/BSStudio/bss-web-backend.git"
}
}