forked from boltwall-org/boltwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
51
52
53
54
55
{
"name": "boltwall",
"version": "0.0.1",
"description": "A Nodejs + Express middleware for adding a lightning-based paywall to API routes w/ macaroons for flexible delegation.",
"main": "dist/index.js",
"repository": "[email protected]:bucko13/boltwall.git",
"author": "Buck Perley <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon",
"build": "tsc --project src/tsconfig.json --outDir dist/",
"lint": "eslint ./src/**/*.ts",
"prePublish": "npm run build",
"docs": "typedoc --out docs --tsconfig src/tsconfig.json src/"
},
"husky": {
"hooks": {
"pre-push": "npm run docs",
"pre-commit": "npm run lint"
}
},
"dependencies": {
"compose-middleware": "5.0.1",
"cookie-session": "1.3.3",
"dotenv": "8.0.0",
"express": "4.17.1",
"ln-service": "^41.1.1",
"macaroons.js": "0.3.8",
"opennode": "1.1.1",
"typescript": "3.5.3"
},
"devDependencies": {
"@now/node": "0.12.1",
"@types/cookie-session": "2.0.37",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.0",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"body-parser": "1.19.0",
"cors": "2.8.5",
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"husky": "^3.0.2",
"nodemon": "1.19.1",
"prettier": "1.18.2",
"ts-node": "8.3.0",
"typedoc": "^0.15.0"
},
"peerDependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5"
}
}