-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "@liskhq/claim-backend",
"version": "0.1.0",
"private": true,
"description": "Server to provide proof of the claim",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"blockchain",
"lisk"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-token-claim.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-token-claim/issues"
},
"homepage": "https://github.com/LiskHQ/lisk-token-claim#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "shx rm -rf dist tsconfig.tsbuildinfo && tsc -b",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"dev": "ts-node ./src/index.ts",
"server": "node ./dist/index.js"
},
"dependencies": {
"@liskhq/lisk-cryptography": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"ethers": "^6.10.0",
"express": "^4.19.2",
"json-rpc-2.0": "^1.7.0",
"log4js": "^6.9.1",
"pg": "^8.11.3",
"reflect-metadata": "^0.2.1",
"sequelize": "^6.28.0",
"sequelize-typescript": "^2.1.5",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/chai": "^4",
"@types/chai-as-promised": "^7.1.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^9.0.0",
"@types/node": "^20.11.6",
"@types/validator": "^13.11.8",
"chai": "^4",
"chai-as-promised": "^7.1.1",
"mocha": "^10",
"shx": "^0.3.3",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}