-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.63 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.63 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fuesim-digital-backend",
"version": "0.10.0",
"type": "module",
"scripts": {
"start:once:linux-macos": "NODE_ENV=production node dist/src/index.js",
"start:once:windows": "set NODE_ENV=production&& node dist/src/index.js",
"start:once": "(pwd && npm run start:once:linux-macos) || npm run start:once:windows",
"start:linux-macos": "NODE_ENV=development tsx watch src/index.ts 127.0.0.1",
"start:windows": "set NODE_ENV=development&& tsx watch src/index.ts 127.0.0.1",
"start": "(pwd && npm run start:linux-macos) || npm run start:windows",
"build": "tsc --project ./tsconfig.build.json",
"lint": "eslint --max-warnings 0 \"./**/*.{ts,js,yml,html}\"",
"lint:fix": "eslint --fix \"./**/*.{ts,js,yml,html}\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose",
"test:migration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose ./src/test/http-migration.spec.ts",
"test:ci-no-migration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose --ci --testPathIgnorePatterns ./src/test/http-migration.spec.ts",
"test:ci-migration": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage --verbose --ci ./src/test/http-migration.spec.ts",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --verbose --watch",
"migration:generate": "npx drizzle-kit generate",
"migration:run": "npx drizzle-kit migrate",
"migration:check": "npx drizzle-kit check",
"db:studio": "npx drizzle-kit studio",
"db:purge": "tsx src/database/scripts/purge.ts"
},
"private": true,
"devEngines": {
"runtime": {
"name": "node",
"version": "~24.13.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": "~11.6.2",
"onFail": "error"
}
},
"dependencies": {
"@electric-sql/pglite": "^0.3.14",
"@types/cookie-parser": "^1.4.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.31.7",
"drizzle-orm": "^0.44.7",
"envalid": "^8.0.0",
"express": "^5.2.0",
"fuesim-digital-shared": "file:../shared",
"immer": "^11.1.4",
"lodash-es": "^4.17.23",
"openid-client": "^6.8.1",
"pg": "^8.14.1",
"socket.io": "^4.8.1",
"supertest": "^7.1.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.36.0",
"@types/cookie": "^0.6.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.1",
"@types/pg": "^8.15.6",
"@types/supertest": "^6.0.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-unicorn": "^56.0.1",
"jest": "^30.2.0",
"socket.io-client": "^4.5.4",
"ts-jest": "^29.4.5",
"tsx": "^4.19.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.55.0"
},
"overrides": {
"@istanbuljs/load-nyc-config": {
"js-yaml": "^4.1.1"
},
"@esbuild-kit/core-utils": {
"esbuild": "0.27.0"
}
}
}