forked from poinswap-team/poinswap-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.41 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
{
"name": "poinswap",
"description": "Poinswap, a Remix starter kit with Tailwind CSS family of libraries",
"private": true,
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/global.css -o app/styles/out.css",
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/global.css -o app/styles/out.css",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx",
"postinstall": "remix setup node"
},
"dependencies": {
"@balavishnuvj/remix-seo": "1.0.2",
"@headlessui/react": "1.5.0",
"@heroicons/react": "1.0.6",
"@radix-ui/react-collapsible": "0.1.6",
"@radix-ui/react-context-menu": "0.1.6",
"@radix-ui/react-dropdown-menu": "0.1.6",
"@radix-ui/react-navigation-menu": "0.1.2",
"@radix-ui/react-scroll-area": "0.1.4",
"@radix-ui/react-tabs": "0.1.5",
"@remix-run/react": "1.4.1",
"@remix-run/vercel": "1.4.1",
"@splitbee/web": "0.3.0",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/forms": "0.5.0",
"@tailwindcss/line-clamp": "0.3.1",
"@tailwindcss/typography": "0.5.2",
"@tanem/react-nprogress": "5.0.0",
"@urql/core": "2.4.4",
"@vechaiui/core": "0.6.0",
"@vechaiui/react": "0.2.2",
"axios": "0.27.2",
"clsx": "1.1.1",
"daisyui": "2.14.1",
"date-fns": "2.28.0",
"dayjs": "1.11.1",
"graphql": "16.3.0",
"graphql-request": "4.2.0",
"html-react-parser": "1.4.11",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga4": "1.4.1",
"react-hook-form": "7.30.0",
"react-icons": "4.3.1",
"remix": "1.4.1",
"tailwindcss": "3.0.23",
"tailwindcss-radix": "2.1.1"
},
"devDependencies": {
"@remix-run/dev": "1.4.1",
"@remix-run/eslint-config": "1.4.1",
"@remix-run/serve": "1.4.1",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"autoprefixer": "10.4.4",
"concurrently": "7.1.0",
"eslint": "8.13.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unused-imports": "2.0.0",
"postcss": "8.4.12",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "0.1.10",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
}
}