-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.43 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
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
{
"name": "cybergis-compute-core",
"version": "1.0.0",
"description": "",
"main": "cli.js",
"scripts": {
"test": "jest -c ./test/jest.config.js",
"tsdoc": "typedoc --entryPointStrategy expand ./src --out ./production/tsdoc",
"uml": "# typeorm-uml -d production/uml.png",
"swagger": "node ./production/tools/generate-swagger.js",
"doc-gen": "npm run tsdoc && npm run uml && npm run swagger",
"cpy": "cp -r ./configs ./production && cp ./*.json ./production && cp -r ./src/helpers/python ./production/src/helpers/python",
"prebuild": "rm -rf ./production",
"build": "tsc",
"postbuild": "npm run cpy && npm run doc-gen",
"lint": "eslint .",
"typeorm": "typeorm-ts-node-commonjs",
"start": "node ./production/src/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cybergis/job-supervisor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cybergis/job-supervisor/issues"
},
"homepage": "https://github.com/cybergis/job-supervisor#readme",
"dependencies": {
"axios": "^0.21.4",
"better-sqlite3": "^7.5.1",
"commander": "^6.2.1",
"express": "^4.18.2",
"express-fileupload": "^1.2.0",
"isomorphic-git": "^1.25.6",
"jsonschema": "^1.2.6",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-ssh": "^10.0.2",
"redis": "^4.6.13",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"typeorm": "0.3.20",
"util": "^0.12.3",
"validator": "^13.7.0"
},
"devDependencies": {
"@inscreen/typeorm-uml": "^1.6.5-is1",
"@stylistic/eslint-plugin": "^1.6.1",
"@types/babel__core": "^7.20.5",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/jest": "^27.4.1",
"@types/morgan": "^1.9.9",
"@types/node": "^16.11.10",
"@types/node-ssh": "^7.0.1",
"@types/ssh2": "^0.5.46",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.1.3",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.3.0",
"jest": "^27.5.1",
"prettier": "^3.2.5",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.11",
"typescript": "5.2.2",
"typescript-eslint": "^7.11.0"
}
}