generated from lawalletio/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.93 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
{
"name": "recovery",
"version": "0.1.0",
"description": "LaWallet recovery Module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"./dist/index.mjs",
"./dist/index.mjs.map"
],
"exports": {
"default": "./dist/index.mjs"
},
"scripts": {
"postinstall": "prisma generate",
"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.js",
"build": "node ./build.mjs && pnpm run build:types",
"build:prod": "node ./build.mjs",
"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; prisma validate",
"prettier": "prettier src tests --no-error-on-unmatched-pattern --write; prisma format",
"prisma:migrate": "prisma migrate dev"
},
"keywords": [],
"author": {
"name": "La Crypta",
"url": "https://lacrypta.ar",
"email": "info@lacrypta.ar"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@lawallet/module": "~0.8.3",
"@nostr-dev-kit/ndk": "^2.8.2",
"@prisma/client": "5.14.0",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs": "0.0.1-security",
"glob": "^10.3.15",
"nostr-tools": "npm:@lawallet/nostr-tools@^1.17.0",
"websocket-polyfill": "^0.0.3",
"ws": "^8.17.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.12",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^17.1.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",
"prisma": "^5.14.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-jest-mock-import-meta": "^1.2.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5"
},
"overrides": {
"nostr-tools": "npm:@lawallet/nostr-tools"
},
"pnpm": {
"overrides": {
"nostr-tools": "npm:@lawallet/nostr-tools"
}
}
}