-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3 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
{
"name": "uma.xyz",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rm -rf node_modules && rm -rf .next",
"format": "prettier --write './**/*.{js,mjs,jsx,ts,tsx,css,md,json}' --config ./prettier.config.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"fix": "pnpm format && pnpm lint-fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=ebd597792be4",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"analyze": "ANALYZE=true pnpm run build"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.6.9",
"@codesandbox/sandpack-themes": "^2.0.21",
"@cowprotocol/ts-dune-client": "^0.0.2",
"@next/third-parties": "^14.1.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-tabs": "^1.0.4",
"@storybook/addon-actions": "^7.3.1",
"@storybook/addon-essentials": "^7.3.1",
"@storybook/addon-interactions": "^7.3.1",
"@storybook/addon-links": "^7.3.1",
"@storybook/addon-styling": "^1.3.6",
"@storybook/jest": "^0.1.0",
"@storybook/nextjs": "^7.3.1",
"@storybook/react": "^7.3.1",
"@storybook/testing-library": "^0.2.0",
"@uma/contracts-node": "^0.4.17",
"@vercel/analytics": "^1.1.3",
"@vercel/kv": "^1.0.1",
"airtable": "^0.12.2",
"chromatic": "^6.22.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"ethers": "^5.7.2",
"framer-motion": "^10.16.15",
"jsonp": "^0.2.1",
"next": "^14.1.0",
"postcss": "^8.4.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-on": "^3.9.1",
"react-loader-spinner": "^5.3.4",
"react-lottie-player": "^1.5.4",
"react-mailchimp-subscribe": "^2.1.3",
"storybook": "^7.3.1",
"storybook-addon-module-mock": "^1.0.13",
"storybook-addon-pseudo-states": "^2.1.0",
"storybook-mock-date-decorator": "^1.0.1",
"swr": "^2.2.1",
"tailwind-merge": "^2.1.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"use-count-up": "^3.0.1",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.16",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jsonp": "^0.2.3",
"@types/node": "20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/react-mailchimp-subscribe": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"autoprefixer": "^10.4.15",
"eslint": "8.47.0",
"eslint-config-next": "^13.4.16",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.3",
"sharp": "^0.32.5",
"typescript": "5.1.6"
}
}