-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
102 lines (102 loc) · 3.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@lawallet/module",
"version": "0.8.3",
"description": "LaWallet Module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"./dist/index.mjs",
"./dist/index.mjs.map",
"./dist/types"
],
"exports": {
"default": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
},
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"test": "DOTENV_CONFIG_PATH=.env.test jest --runInBand",
"test:v": "DEBUG='*,-babel jest --verbose' DOTENV_CONFIG_PATH=.env.test jest --runInBand",
"test:watch": "DOTENV_CONFIG_PATH=.env.test jest --watch",
"dev": "concurrently \"pnpm run build:watch\" \"pnpm run dev:watch\"",
"dev:watch": "nodemon --watch \"dist/**/*\" -w .env -r dotenv/config -e mjs ./dist/index.mjs",
"build": "node ./build.mjs && pnpm run build:types",
"build:types": "tsc --build --verbose ./tsconfig.build.json",
"build:watch": "node ./build.mjs --watch",
"start": "NODE_ENV=production node dist/index.js",
"clean": "rm -rf dist .coverage",
"reset": "pnpm clean && rm -rf node_modules && rm -f pnpm-lock.yaml",
"lint": "eslint src tests --fix",
"prettier": "prettier src tests --write"
},
"keywords": [],
"author": "La Crypta <[email protected]> (https://lacrypta.ar)",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@nostr-dev-kit/ndk": "^2.7.1",
"@types/cors": "^2.8.17",
"@types/morgan": "^1.9.9",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs": "0.0.1-security",
"glob": "^10.3.12",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"nostr-tools": "npm:@lawallet/nostr-tools@^1.17.0",
"uuid": "^9.0.1",
"websocket-polyfill": "^0.0.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-jest-mock-import-meta": "^1.2.0",
"typescript": "^5.4.4"
},
"overrides": {
"nostr-tools": "npm:@lawallet/nostr-tools@^1.17.0"
},
"pnpm": {
"overrides": {
"nostr-tools": "npm:@lawallet/nostr-tools@^1.17.0"
}
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lawalletio/module-boilerplate.git"
},
"bugs": {
"url": "https://github.com/lawalletio/module-boilerplate/issues"
},
"homepage": "https://github.com/lawalletio/module-boilerplate#readme"
}