-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "adamant-ns",
"version": "0.0.1",
"description": "ADAMANT Notification Service",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "tsup --onSuccess 'node -r dotenv/config -r source-map-support/register dist/main.js'",
"dev": "tsup --watch --onSuccess 'node -r dotenv/config -r source-map-support/register dist/main.js'",
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ./src config*.json5",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"postinstall": "prisma generate",
"prepare": "husky"
},
"author": "ADAMANT Foundation <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"adamant",
"notification",
"service",
"blockchain"
],
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/async": "^3.2.24",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.12.7",
"@types/node-cron": "^3.0.11",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^7.18.0",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.(ts|js)": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@prisma/client": "^5.22.0",
"adamant-api": "^2.4.0",
"adamant-module-logger": "github:Adamant-im/adamant-module-logger",
"async": "^3.2.6",
"bignumber.js": "^9.1.2",
"dotenv": "^16.4.7",
"fastify": "^5.1.0",
"fastify-type-provider-zod": "^4.0.2",
"firebase-admin": "^12.7.0",
"json5": "^2.2.3",
"node-cron": "^3.0.3",
"prisma": "^5.22.0",
"zod": "^3.23.8"
}
}