-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "rocketadmin-agent",
"version": "0.0.1",
"description": "RocketAdmin Agent - Connect your database to RocketAdmin through a secure agent",
"author": "RocketAdmin",
"private": true,
"license": "UNLICENSED",
"type": "module",
"bin": "./dist/main.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"start:dev": "tsc -p tsconfig.build.json && node dist/main.js",
"start:debug": "node --inspect dist/main.js",
"start:prod": "node dist/main.js"
},
"dependencies": {
"@azure/core-tracing": "^1.3.1",
"@rocketadmin/shared-code": "workspace:*",
"argon2": "^0.44.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"crypto-js": "^4.2.0",
"dotenv": "^17.3.1",
"inquirer": "^13.3.2",
"ora": "^9.3.0",
"rimraf": "^6.1.3",
"wait-on": "^9.0.4",
"winston": "^3.19.0",
"ws": "^8.19.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^24.9.1",
"@types/ws": "^8.18.1",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
}
}