forked from SatoshiPortal/lnurl_cypherapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "lnurl",
"version": "0.1.0",
"description": "",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc",
"start:dev": "npx prisma migrate dev && node --inspect=0.0.0.0:9229 --require ts-node/register ./src/index.ts",
"start": "npx prisma migrate deploy && npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SatoshiPortal/lnurl_cypherapp.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SatoshiPortal/lnurl_cypherapp/issues"
},
"homepage": "https://github.com/SatoshiPortal/lnurl_cypherapp#readme",
"dependencies": {
"@prisma/client": "^2.30.0",
"@types/async-lock": "^1.1.2",
"async-lock": "^1.2.4",
"axios": "^0.21.1",
"bech32": "^2.0.0",
"date-fns": "^2.23.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"prisma": "^2.30.0",
"reflect-metadata": "^0.1.13",
"tslog": "^3.2.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.52",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.1.0"
}
}