-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "explorer-plus",
"version": "1.0.7",
"author": "ReflectiveChimp",
"license": "MIT",
"private": true,
"type": "commonjs",
"scripts": {
"prepare": "husky install",
"build": "webpack --config webpack/webpack.config.js",
"watch": "webpack --config webpack/webpack.config.js --watch"
},
"devDependencies": {
"@types/chrome": "^0.0.197",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@shazow/whatsabi": "^0.1.0",
"@types/minimatch": "^5.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"minimatch": "^5.1.0",
"p-map": "4.0.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"vm-browserify": "^1.1.2"
},
"lint-staged": {
"*.{ts,tsx,json}": "prettier --write"
},
"browserslist": [
"last 2 chrome versions"
]
}