-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 3.44 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "evm-debuger",
"private": true,
"scripts": {
"clean": "lerna run clean && lerna clean --yes && rimraf node_modules",
"lint:check": "lerna run lint:check",
"lint:fix": "lerna run lint:fix",
"test": "lerna run test",
"analyzer:chain": "lerna run chain --scope @evm-debuger/analyzer",
"analyzer:dev": "lerna run start:dev --scope @evm-debuger/analyzer ",
"analyzer:build": "lerna run build --scope @evm-debuger/analyzer",
"analyzer:lint-check": "lerna run lint:check --scope @evm-debuger/analyzer",
"analyzer:lint-fix": "lerna run lint:fix --scope @evm-debuger/analyzer",
"analyzer:test": "lerna run test --scope @evm-debuger/analyzer",
"analyzer:test:fetch-abis": "lerna run test:fetch-abis --scope @evm-debuger/analyzer",
"frontend:start": "lerna run start --scope @evm-debuger/frontend",
"frontend:build": "lerna run build --scope @evm-debuger/frontend",
"frontend:build:stage": "lerna run build:stage --scope @evm-debuger/frontend",
"frontend:build:prod": "lerna run build:prod --scope @evm-debuger/frontend",
"frontend:lint-check": "lerna run lint:check --scope @evm-debuger/frontend",
"frontend:lint-fix": "lerna run lint:fix --scope @evm-debuger/frontend",
"frontend:test": "lerna run test --scope @evm-deKbuger/frontend",
"srcmap-api:lint-check": "lerna run lint:check --scope @evm-debuger/srcmap-api",
"srcmap-api:lint-fix": "lerna run lint:fix --scope @evm-debuger/srcmap-api",
"srcmap-api:test": "lerna run test --scope @evm-debuger/srcmap-api",
"srcmap-compiler:lint-check": "lerna run lint:check --scope @evm-debuger/srcmap-compiler",
"srcmap-compiler:lint-fix": "lerna run lint:fix --scope @evm-debuger/srcmap-compiler",
"srcmap-compiler:test": "lerna run test --scope @evm-debuger/srcmap-compiler",
"transaction-trace-api:lint-check": "lerna run lint:check --scope @evm-debuger/transaction-trace-api",
"transaction-trace-api:lint-fix": "lerna run lint:fix --scope @evm-debuger/transaction-trace-api",
"transaction-trace-provider:lint-check": "lerna run lint:check --scope @evm-debuger/transaction-trace-provider",
"transaction-trace-provider:lint-fix": "lerna run lint:fix --scope @evm-debuger/transaction-trace-provider",
"types:build": "lerna run build --scope @evm-debuger/types"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-jest": "^29.5.0",
"dotenv": "^16.0.3",
"esbuild": "^0.14.14",
"esbuild-jest": "^0.5.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^46.0.0",
"jest": "^29.5.0",
"lerna": "^6.0.3",
"prettier": "^2.8.8",
"react-spa-prerender": "^1.0.14",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"@fontsource/inter": "^5.0.3",
"ethers": "^5.7.2",
"hardhat": "^2.14.1",
"node-jq": "^2.3.5",
"react-contentful": "^2.0.31",
"react-helmet": "^6.1.0",
"typescript": "^5.0.4"
}
}