-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.8 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "mint-ensemble-manager",
"version": "4.1.0",
"description": "",
"scripts": {
"start": "ts-node -r node-localstorage/register ./dist/server.js",
"start:watch": "nodemon ./dist/server.js",
"build": "npx webpack",
"test": "ENSEMBLE_MANAGER_CONFIG_FILE=src/config/config.json jest",
"lint-staged": "lint-staged",
"eslint:fix": "eslint --quiet --fix",
"prettier:fix": "prettier --write --ignore-unknown",
"prepare": "husky && husky install"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm run-script build && npm start",
"ext": "ts"
},
"lint-staged": {
"src/*.ts": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.7.1",
"@aws-sdk/client-s3": "^3.525.0",
"@bull-board/api": "^4.6.4",
"@bull-board/express": "^4.6.4",
"@kubernetes/client-node": "^0.21.0",
"@mfosorio/tapis-typescript": "0.0.30",
"@mintproject/modelcatalog_client": "^8.0.0",
"@types/fs-extra": "^8.0.1",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-middleware": "^3.7.2",
"apollo-boost": "^0.4.9",
"axios": "^1.6.2",
"bull": "^4.10.2",
"cors": "^2.8.5",
"cross-fetch": "^3.0.5",
"dockerode": "^3.2.1",
"dockerode-utils": "0.0.7",
"express": "^4.17.1",
"express-openapi": "^5.0.0",
"express-openapi-validator": "^5.0.0",
"fetch": "^1.1.0",
"form-data": "^2.3.3",
"fs-extra": "^8.1.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"graphql-ws": "^5.11.2",
"js-yaml": "^3.13.1",
"node-localstorage": "^2.2.1",
"nodemon-webpack-plugin": "^4.3.2",
"react-dom": "^18.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"swagger-ui-express": "^4.1.3",
"ts-loader": "^9.4.1",
"tsconfig-paths": "^4.1.0",
"tslib": "^2.4.1",
"webpack-dev-middleware": "^3.7.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@graphql-tools/jest-transform": "^2.0.0",
"@types/body-parser": "^1.17.1",
"@types/bull": "^3.14.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dockerode": "^2.5.34",
"@types/express": "^4.17.2",
"@types/express-openapi": "^1.9.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^3.12.1",
"@types/node": "^12.12.7",
"@types/swagger-ui-express": "^4.1.1",
"@types/yauzl": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"copy-webpack-plugin": "^6.1.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^2.0.20",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"ts-md5": "^1.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
}
}