-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "remix-template-vercel-ts",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently 'npm run dev:css' 'remix dev'",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@balavishnuvj/remix-seo": "^1.0.2",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.7.0",
"@remix-run/vercel": "^1.7.0",
"@splitbee/web": "^0.3.0",
"@urql/core": "^3.0.3",
"graphql": "16.6.0",
"graphql-request": "5.0.0",
"nprogress": "0.2.0",
"prop-types": "15.8.1",
"query-string": "7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "7.35.0",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.0",
"@remix-run/eslint-config": "^1.7.0",
"@remix-run/serve": "^1.7.0",
"@tailwindcss/typography": "^0.5.7",
"@types/nprogress": "0.2.0",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"autoprefixer": "^10.4.9",
"concurrently": "^7.4.0",
"daisyui": "^2.27.0",
"eslint": "8.23.1",
"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.16",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=14"
}
}