-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 3.1 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
{
"name": "safe-hawk",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@iexec/dataprotector": "^2.0.0-beta.10",
"@iexec/web3mail": "1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/themes": "^3.1.4",
"@rainbow-me/rainbowkit": "^2.2.0",
"@reown/appkit": "^1.1.5",
"@reown/appkit-adapter-wagmi": "^1.1.5",
"@tanstack/react-query": "^5.59.15",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^22.7.7",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@visx/axis": "^3.10.1",
"@visx/gradient": "^3.3.0",
"@visx/responsive": "^3.10.2",
"@visx/scale": "^3.5.0",
"@visx/shape": "^3.5.0",
"classnames": "^2.5.1",
"connectkit": "^1.8.2",
"copy-webpack-plugin": "^12.0.2",
"ethers": "^6.13.4",
"express": "^4.21.1",
"framer-motion": "^11.11.9",
"graphql": "^16.9.0",
"html-webpack-plugin": "^5.6.2",
"node-cron": "^3.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-router": "^6.27.0",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.1",
"sass": "^1.80.1",
"ts-loader": "^9.5.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"undici": "^6.20.1",
"viem": "^2.21.29",
"wagmi": "^2.12.19",
"web-vitals": "^2.1.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"start-server:dev": "NODE_ENV=development tsx watch --tsconfig ./tsconfig.server.json server/index.ts",
"start-server": "NODE_ENV=production tsx --tsconfig ./tsconfig.server.json server/index.ts",
"build-extension": "webpack --config webpack.config.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@eslint/js": "^9.12.0",
"@svgr/webpack": "^8.1.0",
"@types/chrome": "^0.0.278",
"@types/express": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"file-loader": "^6.2.0",
"globals": "^15.11.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"svg-inline-loader": "^0.8.2",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.9.0",
"url-loader": "^4.1.1"
}
}