-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.91 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
{
"name": "noob_agent",
"version": "1.0.0",
"description": "Agent for some local tooling I use",
"main": "dist/bundle.js",
"scripts": {
"build": "webpack --mode development",
"release": "webpack --mode production",
"bs": "yarn build && yarn start",
"start": "node ./dist/bundle.cjs",
"lint:fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"playground-index": "node --loader ts-node/esm ./src/index.ts",
"playground": "node --loader ts-node/esm ./src/playground/main.ts",
"playground2": "node --loader ts-node/esm ./src/playground/main2.ts",
"api": "node --loader ts-node/esm ./src/api/api.ts",
"install-win-service": "yarn release && node --loader ts-node/esm ./src/installer/install.ts",
"rebuild-win-service": "yarn release && node --loader ts-node/esm ./src/installer/restart.ts",
"uninstall-win-service": "node --loader ts-node/esm ./src/installer/uninstall.ts"
},
"type": "module",
"keywords": [],
"author": "Noobgam <shessmaster12@gmail.com>",
"license": "ISC",
"repository": "git@github.com:Noobgam/noob-agent.git",
"private": true,
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"express": "^4.21.2",
"googleapis": "^144.0.0",
"mysql2": "^3.12.0",
"pino": "^9.6.0",
"prom-client": "^15.1.3",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/node-windows": "^0.1.6",
"@types/object-hash": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"node-windows": "^1.0.0-beta.8",
"object-hash": "^3.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0",
"zod": "^3.24.1"
},
"packageManager": "yarn@4.6.0"
}