-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 KB
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
{
"name": "remix-swap",
"private": true,
"author": "Henry Zhu <hz@henryzhu.me>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "npx tailwindcss -o ./app/tailwind.css --minify",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "npx tailwindcss -o ./app/tailwind.css -w",
"dev:remix": "remix dev",
"start": "remix-serve build",
"test:e2e": "start-test \"hardhat node\" 8545 dev 3000 \"jest --config './e2e/jest.config.js'\""
},
"dependencies": {
"@rainbow-me/rainbowkit": "^0.11.0",
"@remix-run/node": "^1.13.0",
"@remix-run/react": "^1.13.0",
"@remix-run/vercel": "^1.13.0",
"@vercel/node": "^2.4.5",
"clsx": "^1.1.1",
"ethers": "^5.6.8",
"lodash.debounce": "^4.0.8",
"qs": "^6.10.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"wagmi": "^0.11.0"
},
"devDependencies": {
"@chainsafe/dappeteer": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@remix-run/dev": "^1.7.0",
"@remix-run/eslint-config": "^1.7.0",
"@remix-run/serve": "^1.7.0",
"@tanstack/react-query": "^4.3.1",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"concurrently": "^7.4.0",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"hardhat": "^2.11.1",
"jest": "^29.0.3",
"pptr-testing-library": "^0.7.0",
"puppeteer": "^19.2.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.0",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16"
}
}