forked from noobaa/noobaa-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 5.23 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "noobaa-core",
"version": "5.18.0",
"license": "SEE LICENSE IN LICENSE",
"description": "",
"homepage": "https://github.com/noobaa/noobaa-core",
"repository": {
"type": "git",
"url": "https://github.com/noobaa/noobaa-core.git"
},
"bugs": {
"url": "https://github.com/noobaa/noobaa-core/issues"
},
"main": "src/api/index.js",
"bin": "src/cmd/index.js",
"scripts": {
"install": "echo install hook override to avoid npm default hook calling node-gyp",
"build": "npm run build:native",
"build:native": "node-gyp configure && node-gyp build",
"rebuild": "npm run clean:install && npm run clean:build && npm install && npm run build",
"pkg": "pkg . --public --options unhandled-rejections=warn --compress Brotli",
"---": "------------------------------------------------------------------",
"test": "npm run lint && npm run mocha",
"ts": "tsc",
"lint": "eslint src --quiet",
"mocha": "node --allow-natives-syntax ./node_modules/.bin/_mocha src/test/unit_tests/index.js",
"jest": "sudo npx jest",
"----": "-----------------------------------------------------------------",
"start": "node --unhandled-rejections=warn src/cmd",
"cmd": "node --unhandled-rejections=warn src/cmd",
"api": "node --unhandled-rejections=warn src/cmd/api",
"nsfs": "node --unhandled-rejections=warn src/cmd/nsfs",
"backingstore": "node --unhandled-rejections=warn src/cmd/backingstore",
"-----": "----------------------------------------------------------------",
"web": "node --unhandled-rejections=warn src/server/web_server",
"bg": "node --unhandled-rejections=warn src/server/bg_workers",
"s3": "node --unhandled-rejections=warn src/s3/s3rver_starter",
"hosted_agents": "node --unhandled-rejections=warn src/hosted_agents/hosted_agents_starter",
"tunnel": "sudo node --unhandled-rejections=warn src/tools/tcp_tunnel",
"agent": "node --unhandled-rejections=warn src/agent/agent_cli",
"agents": "node --unhandled-rejections=warn src/agent/agent_cli --scale 10",
"------": "---------------------------------------------------------------",
"db": "postgres -D ./storage/postgres",
"db:init": "initdb -D ./storage/postgres -E UTF-8 --locale=C",
"db:create": "npm run db:createuser && npm run db:createdb",
"db:createuser": "createuser postgres && psql postgres -c 'ALTER USER postgres CREATEDB'",
"db:createdb": "createdb -U postgres nbcore",
"db:grantperm": "psql nbcore postgres -c 'GRANT ALL ON SCHEMA public TO postgres'",
"db:connect": "psql nbcore postgres",
"-------": "--------------------------------------------------------------",
"clean": "npm run clean:install && npm run clean:build && npm run clean:test && npm run clean:garbage",
"clean:install": "rm -rf ./node_modules",
"clean:build": "rm -rf ./build",
"clean:test": "rm -rf ./coverage ./logs",
"clean:garbage": "find . -name .DS_Store -print -delete",
"clean:storage": "rm -rf ./storage"
},
"config": {
"covdir": "coverage"
},
"pkg": {
"outputPath": "build",
"targets": [
"host"
],
"options": "unhandled-rejections=warn",
"assets": [
"src/util/sql_functions/**",
"node_modules/**/*.node",
"build/**/*.node"
]
},
"dependencies": {
"@aws-sdk/client-s3": "3.650.0",
"@aws-sdk/client-sts": "3.650.0",
"@azure/identity": "4.4.1",
"@azure/monitor-query": "1.3.1",
"@azure/storage-blob": "12.24.0",
"@google-cloud/storage": "7.12.1",
"@smithy/node-http-handler": "3.2.0",
"ajv": "8.17.1",
"aws-sdk": "2.1691.0",
"bcrypt": "5.1.1",
"big-integer": "1.6.52",
"bindings": "1.5.0",
"bufferutil": "4.0.8",
"chance": "1.1.12",
"compression": "1.7.4",
"crc-32": "1.2.2",
"express": "4.21.0",
"express-http-proxy": "2.1.1",
"getos": "3.2.1",
"glob-to-regexp": "0.4.1",
"heapdump": "0.3.15",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.5",
"ip": "2.0.1",
"jsonwebtoken": "9.0.2",
"linux-blockutils": "0.2.0",
"lodash": "4.17.21",
"mime": "3.0.0",
"minimist": "1.2.8",
"moment": "2.30.1",
"moment-timezone": "0.5.45",
"mongo-query-to-postgres-jsonb": "0.2.17",
"mongodb": "3.7.4",
"morgan": "1.10.0",
"nan": "2.20.0",
"ncp": "2.0.0",
"node-addon-api": "8.1.0",
"performance-now": "2.1.0",
"pg": "8.12.0",
"ping": "0.4.4",
"prom-client": "15.1.3",
"ps-node": "0.1.6",
"rimraf": "6.0.1",
"seedrandom": "3.0.5",
"setimmediate": "1.0.5",
"typescript": "5.6.2",
"utf-8-validate": "6.0.4",
"uuid": "10.0.0",
"ws": "8.18.0",
"xml2js": "0.6.2",
"yaml": "2.5.1",
"yauzl": "3.1.3",
"yazl": "2.5.1"
},
"devDependencies": {
"@aws-sdk/lib-storage": "3.650.0",
"@stylistic/eslint-plugin-js": "1.8.1",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.7",
"@types/mongodb": "4.0.7",
"@types/node": "20.16.5",
"@types/pg": "8.11.9",
"@types/request": "2.48.12",
"eslint": "8.57.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-jest": "28.8.3",
"jest": "29.7.0",
"mocha": "10.7.3",
"node-gyp": "10.2.0",
"pkg": "5.8.1",
"pkg-fetch": "3.5.2",
"sinon": "18.0.1",
"wtfnode": "0.9.3"
}
}