-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
{
"name": "rain.frame",
"version": "0.0.25",
"private": true,
"type": "module",
"license": "LicenseRef-DCL-1.0",
"author": "Rain Open Source LLC",
"dependencies": {
"@fontsource/dm-sans": "^5.0.22",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@rainbow-me/rainbowkit": "^2.1.7",
"@rainlanguage/orderbook": "0.0.1-alpha.5",
"@tanstack/react-query": "^5.51.23",
"@tanstack/react-table": "^8.20.5",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.7",
"@uiw/react-codemirror": "^4.23.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"codemirror-rainlang": "^3.0.11",
"dotenv": "^16.4.5",
"flowbite-react": "^0.10.1",
"frames.js": "^0.16.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.427.0",
"next": "^14.1.4",
"nextjs-toploader": "^3.6.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.2",
"react-markdown": "^9.0.1",
"rehype-raw": "^7.0.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-safe-area": "^0.6.0",
"viem": "^2.19.1",
"wagmi": "^2.12.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@frames.js/debugger": "^0.3.0",
"@tailwindcss/typography": "^0.5.14",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^18.17.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"globals": "^15.9.0",
"is-port-reachable": "^4.0.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.7",
"typescript": "^5.4.5",
"typescript-eslint": "^8.7.0",
"vitest": "^2.1.2"
},
"scripts": {
"nix-dev": "nix develop --extra-experimental-features nix-command --extra-experimental-features flakes",
"dev": "node ./scripts/dev-script.js",
"start": "next start",
"build": "next build",
"lint-check": "eslint .",
"lint:fix": "eslint . --fix",
"format-check": "prettier --list-different .",
"format": "prettier --write . --config ./.prettierrc.json",
"lint-format-check": "npm run lint-check && npm run format-check",
"test": "vitest"
}
}