-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.13 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
{
"name": "gestik",
"version": "0.6.11",
"private": true,
"license": "MIT",
"description": "Gestión de tickets y requerimientos",
"main": "dist/server/server-gestik.js",
"files": [
"dist",
"install"
],
"dependencies": {
"backend-plus": "2.0.0-rc.13",
"fs-extra": "^11.2.0",
"pg-triggers": "^0.3.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "~7.6.0",
"@typescript-eslint/parser": "~7.6.0",
"backend-tester": "^0.1.1",
"eslint": "~8.56.0",
"form-data": "^4.0.0",
"guarantee-type": "^0.1.2",
"mocha": "^10.4.0",
"mixin-patch": "^0.4.1",
"node-fetch": "^3.3.2",
"types.d.ts": "^0.6.21",
"typescript": "^5.4",
"why-is-node-running": "^2.2.2"
},
"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",
"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-only-run": "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"
}
}