-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 830 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 830 Bytes
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
{
"name": "unification-league",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"test": "bun test --timeout 100000 --exit",
"lint": "eslint src --ext .ts"
},
"dependencies": {
"@stackr/sdk": "^0.6.0",
"ethers": "^6.7.1",
"express": "^4.18.2",
"merkletreejs": "^0.3.11",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/chai": "^4.3.13",
"@types/mocha": "^10.0.6",
"@stackr/eslint-plugin": "latest",
"@types/express": "^4.17.19",
"@types/inquirer": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"chai": "^5.1.0",
"bun-types": "latest",
"eslint": "^8.57.0",
"typescript-eslint": "^8.4.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}