-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "airlock",
"version": "0.1.0",
"description": "proxy service",
"main": "./src/index.js",
"repository": "[email protected]:gnosisguild/airlock.git",
"author": "samepant <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn build && node dist/index.js",
"build": "tsc --build && tsc-alias",
"dev": "NODE_ENV=development nodemon -r dotenv/config src/index.ts"
},
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.4",
"@types/node-fetch": "^2.6.4",
"apicache": "^1.6.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"morgan": "^1.10.0",
"node-fetch": "^2.6.12",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6",
"viem": "^2.0.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@types/apicache": "^1.6.6",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.45.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0"
}
}