-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "lndhubx-proxy-server",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/server.js",
"dev": "ts-node-dev ./src/server.ts",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose"
},
"author": "Francisco Calderón <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"@upstash/redis": "^1.22.0",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2"
}
}