-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 971 Bytes
/
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
{
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --watch --mode=development",
"clean": "rm -Rf assets typescript/build",
"test": "npx jest"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/typescript/tests/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@wagmi/connectors": "^5.1.7",
"@wagmi/core": "^2.13.4",
"@web3modal/wagmi": "5.1.7",
"viem": "^2.20.0"
}
}