-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "@rotki/demo-environment",
"version": "1.0.0",
"private": "true",
"packageManager": "[email protected]",
"description": "proxy for a rotki demo",
"keywords": [
"demo",
"proxy"
],
"license": "AGPL-3.0",
"homepage": "https://rotki.com",
"repository": "https://github.com/rotki/demo-environment",
"author": "Rotki Solutions GmbH <[email protected]>",
"main": "src/index.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "esbuild src/index.ts --bundle --minify --sourcemap --platform=node --target=node18.15 --outdir=dist",
"dev": "nodemon -r dotenv/config --watch './**/*.ts' src/index.ts",
"release": "bumpp -r --no-push"
},
"dependencies": {
"body-parser": "1.20.2",
"esbuild": "0.17.11",
"express": "4.18.2",
"http-proxy-middleware": "2.0.6",
"winston": "3.8.2"
},
"devDependencies": {
"@rotki/eslint-config": "1.0.4",
"@types/body-parser": "1.19.2",
"@types/express": "4.17.17",
"@types/node": "18",
"bumpp": "9.1.0",
"dotenv": "16.0.3",
"eslint": "8.35.0",
"nodemon": "2.0.21",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"engines": {
"node": ">=18 <19",
"pnpm": ">=8 <9"
}
}