-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.1 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
63
64
65
66
67
{
"name": "@v6y/bfb-dynamic-auditor",
"version": "0.0.0",
"main": "src/index.ts",
"type": "module",
"files": [
"src",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/ekino/v6y"
},
"scripts": {
"build:tsc": "tsc --project ./tsconfig.json",
"check:tsc": "tsc --noEmit --project ./tsconfig.json",
"start:dev": "NODE_ENV=development nodemon --exec node --env-file=./.env --loader ts-node/esm src/index.ts -- --dev",
"start": "nodemon --exec node --env-file=./.env --loader ts-node/esm src/index.ts --",
"code:analyze": "es6-plato -r -d target/report src",
"lint": "eslint --config ./eslint.config.mjs --cache-location ./.eslintcache \"./**/*.ts\" --cache",
"lint:fix": "eslint --config ./eslint.config.mjs --cache-location ./.eslintcache \"./**/*.ts\" --cache --fix",
"format": "prettier --write ./src",
"test": "vitest --coverage --watch false"
},
"devDependencies": {
"@eslint/js": "=10.0.1",
"@trivago/prettier-plugin-sort-imports": "=6.0.0",
"@types/body-parser": "=1.19.5",
"@types/cookie-parser": "=1.4.8",
"@types/cors": "=2.8.17",
"@types/express": "=5.0.5",
"@types/express-status-monitor": "=1.3.3",
"@types/supertest": "=6.0.2",
"@vitest/coverage-v8": "=3.0.5",
"@vitest/ui": "=4.0.14",
"chai": "=6.2.1",
"es6-plato": "=1.2.3",
"eslint": "=10.0.1",
"eslint-config-prettier": "=10.0.1",
"eslint-plugin-prettier": "=5.2.1",
"globals": "=16.4.0",
"lighthouse": "=13.0.3",
"nodemon": "=3.1.9",
"puppeteer-core": "=24.0.0",
"supertest": "=7.0.0",
"ts-node": "=10.9.2",
"typescript": "=5.7.3",
"typescript-eslint": "=8.56.0",
"vitest": "=3.0.5"
},
"dependencies": {
"@v6y/core-logic": "workspace:^",
"axios": "=1.15.2",
"axios-retry": "=4.5.0",
"body-parser": "=2.2.1",
"cookie-parser": "=1.4.7",
"cors": "=2.8.5",
"cron": "=4.3.3",
"date-fns": "=4.1.0",
"ecoindex": "=1.0.7",
"express": "=5.2.0",
"express-status-monitor": "=1.3.4",
"fs-extra": "=11.2.0",
"@prisma/client": "=7.8.0"
}
}