-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"start": "remix-serve build",
"typecheck": "tsc -b"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@netlify/functions": "^1.3.0",
"@remix-run/netlify": "^1.10.0",
"@remix-run/node": "^1.10.0",
"@remix-run/react": "^1.10.0",
"@remix-run/serve": "^1.10.0",
"@tabler/icons-react": "^2.6.0",
"avvvatars-react": "^0.4.2",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"east": "^2.0.3",
"ismobilejs": "^1.1.1",
"npm-run-all": "^4.1.5",
"phone": "^3.1.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-intersection-observer": "^9.4.1",
"remix-utils": "^6.0.0",
"surrealdb.js": "^0.5.0",
"tiny-invariant": "^1.3.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@remix-run/dev": "^1.10.0",
"@remix-run/eslint-config": "^1.10.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/bcryptjs": "^2.4.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/react-grid-layout": "^1.3.2",
"@types/validator": "^13.7.10",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}