-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
102 lines (102 loc) · 3.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "metasuites",
"version": "5.5.0",
"repository": {
"type": "git",
"url": "https://github.com/blocksecteam/metasuites.git"
},
"engines": {
"node": "18.18.0"
},
"type": "module",
"scripts": {
"dev": "vite --mode development",
"start": "vite --mode production",
"build:prod": "vite build --mode production --outDir dist/chrome-extension",
"build:test": "vite build --mode test --outDir dist/chrome-extension",
"build-firefox:prod": "vite build --mode production --outDir dist/firefox-extension && node build/firefox.js",
"build-firefox:test": "vite build --mode test --outDir dist/firefox-extension && node build/firefox.js",
"build-safari:prod": "vite build --mode production --outDir dist/safari-extension && node build/safari.js",
"build-safari:test": "vite build --mode test --outDir dist/safari-extension && node build/safari.js",
"build:all": "yarn build:prod & yarn build-firefox:prod & yarn build-safari:prod",
"stylelint": "stylelint \"**/*.{css,scss,less}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss,less}\" --fix",
"prepare": "husky install && husky set .husky/pre-commit \"npx lint-staged\" && husky set .husky/commit-msg 'npx --no -- commitlint --edit \"$1\"'",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "vitest"
},
"dependencies": {
"@remusao/url-match-patterns": "^1.2.0",
"antd": "^5.11.2",
"big.js": "^6.2.1",
"blockies-ts": "^1.0.0",
"buffer": "^6.0.3",
"chrome-extension-core": "0.1.8",
"classnames": "^2.3.2",
"clipboard-copy": "^4.0.1",
"colorjs.io": "^0.5.0",
"d3": "^5.0.0",
"d3-graphviz": "2.6.1",
"dayjs": "^1.11.6",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"ethers": "^6.0.8",
"is-mobile": "^4.0.0",
"jquery": "^3.6.3",
"json-2-csv": "^5.5.5",
"json-bigint": "^1.0.0",
"ky": "^0.33.3",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"papaparse": "^5.4.1",
"qs": "^6.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"save-svg-as-png": "^1.4.17",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@types/big.js": "^6.1.6",
"@types/chrome": "^0.0.200",
"@types/d3": "5",
"@types/d3-graphviz": "^2.6.7",
"@types/jquery": "^3.5.16",
"@types/json-bigint": "^1.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.11.8",
"@types/papaparse": "^5.3.14",
"@types/qs": "^6.9.15",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^4.3.1",
"stylelint": "^13.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"terser": "^5.16.3",
"tslib": "2.4.0",
"typescript": "4.8.4",
"vite": "3.1.4",
"vitest": "^2.0.5"
},
"license": "Apache-2.0"
}