-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.4 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
{
"name": "gestik",
"version": "0.7.5",
"private": true,
"license": "MIT",
"description": "Gestión de tickets y requerimientos",
"main": "dist/server/server-gestik.js",
"files": [
"dist",
"install"
],
"dependencies": {
"backend-plus": "^2.5.13",
"fs-extra": "^11.3.1",
"pg-triggers": "^0.4.3",
"serve-content": "^1.0.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.33.0",
"form-data": "^4.0.4",
"guarantee-type": "^0.2.2",
"mixin-patch": "^0.4.1",
"mocha": "^11.7.5",
"node-fetch": "^3.3.2",
"serial-tester": "^0.2.0",
"types.d.ts": "^0.6.22",
"typescript": "^5.9",
"why-is-node-running": "^3.2.2"
},
"devDependencies-with-problems": {},
"mixin-patch": {},
"scripts": {
"build": "tsc -p tsconfig-client.json && tsc -p tsconfig-server.json && tsc -p tsconfig-unlogged.json && mixin-patch",
"prepare": "npm run build",
"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",
"watch:buildC": "tsc -p tsconfig-client.json --watch",
"watch:buildS": "tsc -p tsconfig-server.json --watch",
"watch:buildU": "tsc -p tsconfig-unlogged.json --watch",
"dump": "npm start -- --dump-db",
"dumpb": "(tsc -p tsconfig-server.json || echo \"continue w/error\") && npm run dump",
"mixin-patch": "mixin-patch",
"con-eslint-test": "set BACKEND_PLUS_LOCAL_CONFIG=autotest-config && call eslint && call tsc -p tsconfig-server.json && call npm start -- --dump-db && call run-sql create-schema gestik_autotest_db && call npm run test-only-run",
"test": "set BACKEND_PLUS_LOCAL_CONFIG=autotest-config && call tsc -p tsconfig-server.json && call npm start -- --dump-db && call run-sql create-schema gestik_autotest_db && call npm run test-only",
"test-only": "set BACKEND_PLUS_LOCAL_CONFIG=autotest-config && tsc -p tsconfig-test.json && mocha --reporter spec --bail --check-leaks dist/test/test/ --exit",
"start": "node dist/server/server-gestik.js"
}
}