-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
116 lines (116 loc) · 3.75 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "deth-tools",
"version": "0.0.0",
"license": "MIT",
"engines": {
"yarn": ">=1.15.2"
},
"browser": {
"fs": false
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "mocha",
"cy:run": "cypress run",
"test:e2e": "yarn start & wait-on http://localhost:3000 & yarn cy:run",
"test:fix": "yarn lint:fix && yarn format:fix && yarn typecheck && yarn test",
"format": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --check \"./**/*.{ts,tsx,js}\"",
"format:fix": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write \"./**/*.{ts,tsx,js}\"",
"lint": "eslint --ext .ts,.tsx src pages",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"sb": "yarn storybook",
"build-sb": "yarn build-storybook"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@ethereumjs/common": "^2.6.3",
"@ethereumjs/tx": "^3.5.1",
"@ethersproject/abi": "^5.6.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/logger": "^5.6.0",
"@ethersproject/strings": "5.0.0",
"@ethersproject/units": "^5.5.0",
"@headlessui/react": "^1.5.0",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/client-api": "^6.5.10",
"@storybook/manager-webpack5": "^6.4.19",
"bignumber.js": "^9.0.2",
"esm": "^3.2.25",
"lodash": "^4.17.21",
"next": "12.1.0",
"node-fetch": "2",
"raf": "^3.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"secp256k1": "^4.0.3",
"zod": "^3.13.4"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.18.10",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/lodash": "^4.14.180",
"@types/mocha": "^8.2.1",
"@types/node": "17.0.21",
"@types/node-fetch": "2",
"@types/react": "17.0.39",
"@types/secp256k1": "^4.0.3",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "4.15.1",
"autoprefixer": "^10.4.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cypress": "^10.3.0",
"cypress-fail-on-console-error": "^3.2.0",
"earljs": "0.2.2",
"eslint": "8.10.0",
"eslint-config-react-app": "^7.0.0",
"eslint-config-typestrict": "^1.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.8.0-125",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-unused-imports": "^1.1.1",
"ethereumjs-util": "^7.1.4",
"global-jsdom": "^8.4.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.0",
"next-themes": "^0.2.0",
"postcss": "^8.4.5",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"sinon": "^14.0.0",
"tailwindcss": "^3.0.18",
"ts-essentials": "^9.2.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.6.0",
"typescript": "4.6.2",
"wait-on": "^6.0.1",
"webpack": "^5",
"worker-loader": "^3.0.8",
"worker-plugin": "^5.0.1"
}
}