-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 922 Bytes
/
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
{
"name": "@oraichain/indexer",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "github:oraichain/oraichain-indexer",
"scripts": {
"postinstall": "patch-package",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "husky",
"prebuild": "lerna run codegen --concurrency 1",
"build": "lerna run build --concurrency 1"
},
"dependencies": {
"@types/node": "^17.0.21",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-security": "^2.1.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lerna": "^8.1.7",
"nx": "19.5.6",
"patch-package": "^8.0.0",
"ts-jest": "^29.2.3"
}
}