-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "kalypso-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "rm -rf ./dist && npm run build && node dist/index.js",
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"prettier": "npx prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/ioredis": "^4.28.10",
"@types/mocha": "^10.0.1",
"@types/node": "^22.5.4",
"@types/node-fetch": "^2.6.11",
"@types/node-gzip": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"dotenv": "^16.3.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"async-mutex": "^0.5.0",
"bcrypt": "^5.1.1",
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"ethers": "^6.6.6",
"express": "^4.18.2",
"kalypso-sdk": "^1.0.42",
"node-gzip": "^1.1.2",
"zod": "^3.23.8"
}
}