This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "remix-app-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix-routes && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"remix-routes -w\" \"npm run dev:css\" \"npm run dev:remix\"",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"deploy": "fly deploy --remote-only",
"start": "cross-env NODE_ENV=production remix-serve build",
"test": "playwright test",
"pretest:ci": "npm run build",
"test:ci": "playwright test"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.5",
"@hookform/resolvers": "^2.8.8",
"@remix-run/node": "^1.4.1",
"@remix-run/react": "^1.4.1",
"@remix-run/serve": "^1.4.1",
"@tailwindcss/forms": "^0.4.0",
"cross-env": "^7.0.3",
"highlight.js": "^11.4.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.31.0",
"remix-domains": "^0.2.0",
"remix-forms": "^0.17.0",
"remix-routes": "^0.1.2",
"tailwindcss": "^3.0.23",
"zod": "^3.12.0"
},
"devDependencies": {
"@playwright/test": "^1.21.1",
"@remix-run/dev": "^1.4.1",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/tailwindcss": "^3.0.10",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"postcss": "^8.4.6",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwind-scrollbar": "^1.3.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}