-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
111 lines (111 loc) · 3.38 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
{
"name": "@aztec/wallet-ui",
"version": "1.0.0",
"license": "GPL-2.0",
"type": "module",
"scripts": {
"build": "yarn clean && BUILD_PATH='./dest' vite build",
"build:devnet": "yarn clean && BUILD_PATH='./dest' vite build --config vite.dev.config.js",
"serve": "serve -p 1235 ./dest",
"start": "PORT=1235 vite",
"start:devnet": "PORT=1235 vite --config vite.dev.config.js",
"clean": "rm -rf ./dest",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --testTimeout=1000000",
"test-debug": "NODE_NO_WARNINGS=1 node --inspect-brk=0.0.0.0:9220 --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --testTimeout=1000000",
"do-format": "prettier -w ./src",
"formatting": "prettier --check ./src"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"transform": {
".*\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
},
"transformIgnorePatterns": [
"^.+\\.js$"
],
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"setupFilesAfterEnv": [
"<rootDir>/jest.mock.js"
],
"testRegex": "./src/.*\\.test\\.tsx?$",
"rootDir": "./src"
},
"browserslist": [
"last 1 chrome version"
],
"dependencies": {
"@aztec/aztec-ui": "^0.1.13",
"@aztec/alpha-sdk": "2.2.0",
"@rainbow-me/rainbowkit": "^0.8.1",
"@walletconnect/core": "2.2.1",
"@walletconnect/sign-client": "2.2.1",
"@walletconnect/types": "2.2.1",
"ethers": "^5.7.2",
"jspdf": "^2.5.1",
"react-is": "^18.2.0",
"react-router-dom": "^6.8.0",
"safe-json-utils": "^1.1.1",
"serve": "^14.0.1",
"wagmi": "^0.11.5"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@ethersproject/providers": "^5.6.8",
"@rushstack/eslint-patch": "^1.1.4",
"@testing-library/dom": "^8.20.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/debug": "^4.1.7",
"@types/jest": "^29.4.0",
"@types/react": "18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"@types/testing-library__dom": "^7.5.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-react": "^3.1.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"cross-fetch": "^3.1.5",
"debug": "^4.3.4",
"eslint": "^8.34.0",
"events": "^3.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.2",
"jest-fetch-mock": "^3.0.3",
"msw": "^1.0.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"resolve-typescript-plugin": "^1.2.0",
"sass": "^1.58.1",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.5",
"subtle-crypto": "^0.0.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.3.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4",
"util": "^0.12.4",
"vite": "^4.1.1",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-static-copy": "^0.13.0",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}