-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
116 lines (116 loc) · 3.99 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
{
"name": "stage-backend",
"version": "7.1.0-.dev1",
"description": "Cloudify Console Backend",
"repository": "https://github.com/cloudify-cosmo/cloudify-stage/backend",
"license": "Apache-2.0",
"author": "Cloudify",
"main": "server.ts",
"scripts": {
"audit": "npm audit --production --omit=optional ",
"check-types": "tsc && tsc -b test",
"db-migrate": "ts-node -T migration up",
"db-migrate-clear": "ts-node -T migration clear",
"db-migrate-create": "sequelize migration:create --config ../conf/app.json",
"db-migrate-current": "ts-node -T migration current",
"db-migrate-down-to": "ts-node -T migration downTo",
"db-migrate-reset": "ts-node -T migration reset",
"db-migrate-status": "ts-node -T migration status",
"startWithNodemon": "cross-env NODE_ENV=development NODE_TLS_REJECT_UNAUTHORIZED='0' nodemon -x 'node -r ts-node/register' -e js,ts,json --watch . --watch ../conf",
"devDebug": "npm run startWithNodemon -- --inspect server.ts",
"devStart": "npm run startWithNodemon -- server.ts",
"devTrace": "npm run startWithNodemon -- --trace-warnings server.ts",
"postinstall": "patch-package",
"start": "ts-node -T server.ts ${STAGE_BACKEND_ARGS}",
"test": "jest",
"wait-on-server": "wait-on tcp:localhost:8088 --timeout 10000 && echo 'Stage backend is up!'"
},
"nodemonConfig": {
"delay": 2000
},
"dependencies": {
"@evops/hcl-terraform-parser": "^1.0.0",
"@node-saml/passport-saml": "^4.0.3",
"@tsconfig/node14": "^1.0.1",
"archiver": "^5.3.0",
"axios": "^1.7.3",
"body": "^5.1.0",
"bytes": "^3.1.2",
"cloudify-ui-common-backend": "^1.3.5",
"cloudify-ui-common-configs": "^1.2.0",
"cookie": "^0.4.2",
"cookie-parser": "^1.4.3",
"cross-env": "^6.0.0",
"decompress": "^4.2.1",
"directory-tree": "^3.2.2",
"ejs": "^3.1.10",
"elkjs": "^0.8.2",
"express": "^4.19.2",
"express-static-gzip": "^2.1.7",
"flat": "^5.0.2",
"fs-extra": "^3.0.1",
"isbinaryfile": "^5.0.0",
"isolated-vm": "^4.6.0",
"js-beautify": "1.14.7",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mkdirp": "^1.0.3",
"moment": "^2.29.4",
"morgan": "^1.9.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-cookie": "^1.0.9",
"passport-unique-token": "^3.0.0",
"patch-package": "^6.4.7",
"pg": "^8.7.3",
"pg-hstore": "^2.3.3",
"query-string": "^7.0.1",
"sanitize-filename": "^1.6.3",
"sharp": "~0.32.6",
"supertest": "^5.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"wait-on": "^7.2.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@octokit/types": "^7.5.0",
"@types/archiver": "^5.3.1",
"@types/bytes": "^3.1.1",
"@types/cookie": "^0.4.1",
"@types/cookie-parser": "^1.4.3",
"@types/css": "^0.0.33",
"@types/decompress": "^4.2.4",
"@types/ejs": "^3.1.0",
"@types/flat": "^5.0.2",
"@types/fs-extra": "^9.0.12",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.172",
"@types/mkdirp": "^1.0.2",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.68",
"@types/passport": "^1.0.7",
"@types/sequelize": "^4.28.11",
"@types/supertest": "^2.0.11",
"css": "^3.0.0",
"jest": "^29.5.0",
"nock": "^13.0.11",
"nodemon": "^2.0.15",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.4.1"
},
"overrides": {
"simple-update-notifier": {
"semver": "7.6.2"
}
},
"engines": {
"node": "18.20.x"
},
"files": [
"**",
"!test"
]
}