-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "remix-template-vercel-ts",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -o ./app/styles/app.css",
"dev": "concurrently \"yarn dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -o ./app/styles/app.css --watch",
"postinstall": "remix setup node"
},
"dependencies": {
"@remix-run/react": "^1.3.3",
"@remix-run/vercel": "^1.3.3",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.3.3"
},
"devDependencies": {
"@remix-run/dev": "^1.3.3",
"@remix-run/eslint-config": "^1.3.3",
"@remix-run/serve": "^1.3.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@types/ramda": "^0.28.3",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.4",
"concurrently": "^7.0.0",
"eslint": "^8.11.0",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}