-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
82 lines (82 loc) · 2.67 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
{
"name": "blockchain-workshop",
"description": "",
"license": "MIT",
"author": "",
"homepage": "",
"version": "0.0.1",
"main": "dist/js/src/HeadTail.js",
"files": [
"dist/js/build",
"dist/js/src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "yarn compile && yarn wagmi generate && yarn build:ts",
"build:ts": "tsc -b tsconfig.build.json --verbose --pretty",
"clean": "shx rm -rf artifacts build cache dist",
"compile": "hardhat compile",
"lint": "eslint .",
"start": "ts-node src/HeadTail.ts",
"start:ethereum": "hardhat node",
"test": "mocha -r ts-node/register src/test/*.test.ts --timeout 60000 --exit",
"test:contracts": "yarn test:concurrent",
"prettier": "prettier --write --config-precedence file-override './src/**/*'",
"ui": "cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" webpack serve"
},
"types": "dist/js/src/index.d.ts",
"dependencies": {
"viem": "^2.4.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-viem": "^1.0.2",
"@types/chai": "4.2.9",
"@types/mocha": "9.1.0",
"@types/node": "14.14.11",
"@types/react": "16.9.21",
"@types/react-dom": "16.9.5",
"@types/webpack-dev-server": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@wagmi/cli": "^2.0.4",
"assert": "^2.0.0",
"chai": "^4.3.6",
"cross-env": "7.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "3.4.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"ethlint": "1.2.5",
"extract-text-webpack-plugin": "3.0.2",
"fork-ts-checker-webpack-plugin": "4.0.4",
"hardhat": "2.19.4",
"html-webpack-plugin": "5.3.1",
"https-browserify": "^1.0.0",
"mocha": "^9.2.1",
"os-browserify": "0.3.0",
"prettier": "1.19.1",
"process": "0.11.10",
"react": "16.12.0",
"react-dom": "16.12.0",
"shx": "0.3.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.1",
"style-loader": "1.1.3",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"typescript": "5.3.2",
"vm-browserify": "^1.1.2",
"webpack": "5.52.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2"
},
"engines": {
"node": ">= 16"
}
}