-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 586 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 586 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"type": "module",
"name": "pol-proxy",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "esbuild server.js --bundle --outfile=dist/server.js --platform=node --target=node16 --format=cjs",
"build": "pkg dist/server.js --out-path dist -t node16-win-x64"
},
"author": "jaku",
"license": "MIT",
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.2",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"esbuild": "^0.17.4",
"pkg": "^5.8.0"
}
}