-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "ww-proxy-service",
"version": "1.0.0",
"description": "",
"bin": "dist/index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"build:terser": "rollup -c rollup.config.js --bundleConfigAsCjs",
"build:bin": "pkg .",
"build:all": "npm run build && npm run build:bin && npm run build:terser",
"build:all:no:bytecode": "npm run build && pkg . --no-bytecode"
},
"keywords": [],
"author": {
"name": "Avan",
"email": "[email protected]",
"url": "https://github.com/layouwen"
},
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.2.5",
"dotenv": "^16.1.3",
"log4js": "^6.9.1",
"pkg": "^5.8.1",
"rollup": "^3.25.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/http-proxy": "^1.17.11",
"avan-logger": "^0.0.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^2.0.6",
"prettier": "^2.8.8"
},
"pkg": {
"targets": [
"node16-alpine-x64",
"node16-linux-x64",
"node16-macos-arm64",
"node16-macos-x64"
],
"outputPath": "bin"
}
}