-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.63 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
{
"name": "substrate-payout-service",
"version": "1.0.0",
"description": "Reward payout service for substrate-based chains.",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"format:check": "prettier . --check",
"format": "prettier . --write",
"predev": "npm run build",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helikon-tech/substrate-payout-service.git"
},
"keywords": [],
"author": "Kutsal Kaan Bilgin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/helikon-tech/substrate-payout-service/issues"
},
"homepage": "https://github.com/helikon-tech/substrate-payout-service#readme",
"dependencies": {
"@polkadot/api": "^15.0.1",
"@polkadot/keyring": "^13.2.3",
"@types/node": "^22.8.1",
"@types/node-cron": "3.0.11",
"cross-env": "^7.0.3",
"dotenv": "16.4.5",
"minimist": "^1.2.8",
"node-cron": "^3.0.3",
"rimraf": "^6.0.1",
"typescript": "5.6.3",
"uuid": "11.0.1",
"winston": "3.15.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@substrate/dev": "0.9.0",
"@types/yargs": "17.0.33",
"concurrently": "9.0.1",
"nodemon": "3.1.7",
"prettier": "3.3.3"
}
}