-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "adamant-ns",
"version": "0.0.1",
"description": "ADAMANT Notification Service",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "tsup --onSuccess 'node dist/index.js'",
"dev": "tsup --watch --onSuccess 'node dist/index.js'",
"build": "tsup --dts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ./src",
"postinstall": "husky install"
},
"author": "ADAMANT Foundation <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"adamant",
"notification",
"service",
"blockchain"
],
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.5.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.12.7",
"@types/node-cron": "^3.0.11",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.4.3",
"typescript-eslint": "^7.13.1"
},
"lint-staged": {
"*.(ts|js)": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@prisma/client": "^5.16.0",
"@types/bignumber.js": "^5.0.0",
"adamant-api": "^2.4.0",
"adamant-module-logger": "github:Adamant-im/adamant-module-logger",
"bignumber.js": "^9.1.2",
"fastify": "^4.28.0",
"firebase-admin": "^12.2.0",
"json5": "^2.2.3",
"node-cron": "^3.0.3",
"prisma": "^5.16.0"
}
}