-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.38 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.38 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
{
"name": "siper",
"version": "0.7.1",
"private": true,
"license": "MIT",
"description": "Sistema Integral de Gestión de Agentes, Recursos, Personal y Actividades",
"main": "dist/server/server-principal.js",
"types": "dist/server/server-principal.d.ts",
"files": [
"dist",
"install"
],
"engines": {
"node": ">=22.18",
"npm": ">=10.9"
},
"dependencies": {
"backend-plus": "^2.6.0",
"best-globals": "^2.0.7",
"frontend-plus": "^0.0.17",
"guarantee-type": "^0.2.2",
"json4all": "^1.4.2",
"mssql": "^12.2.1",
"pg-triggers": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/mssql": "^9.1.11",
"@types/node": "^25.5.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"mixin-patch": "^0.5.0",
"mocha": "^11.7.5",
"serial-tester": "^0.3.0-rc.2",
"source-map-support": "^0.5.21",
"type-fest": "5.5.0",
"types.d.ts": "^0.6.22",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"mixin-patch": {
"patch": false
},
"scripts": {
"prepare": "tsc -p tsconfig-client.json && tsc -p tsconfig-server.json && tsc -p tsconfig-unlogged.json && mixin-patch",
"build-ignore-error": "(tsc -p tsconfig-client.json || echo \"continue w/error\") && (tsc -p tsconfig-server.json || echo \"continue w/error\") && (tsc -p tsconfig-unlogged.json || echo \"continue w/error\") && mixin-patch",
"build-cli": "(tsc -p tsconfig-client.json || echo \"continue w/error\") && (tsc -p tsconfig-unlogged.json || echo \"continue w/error\") && mixin-patch",
"mixin-patch": "mixin-patch",
"watch:buildC": "tsc -p tsconfig-client.json --watch",
"watch:buildS": "tsc -p tsconfig-server.json --watch",
"watch:buildU": "tsc -p tsconfig-unlogged.json --watch",
"test": "tsc -p tsconfig-test.json && mocha -r ./src/test/setup.js --reporter spec --check-leaks dist/test/test/",
"test-directo": "mocha --reporter spec --bail --check-leaks dist/test/test/",
"dump": "npm start -- --dump-db",
"dumpb": "(tsc -p tsconfig-server.json || echo \"continue w/error\") && npm run dump",
"start": "node dist/server/server/server-principal.js"
}
}