-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "bringit.ringit.ee",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"node server.js\"",
"start": "cross-env NODE_ENV=production node ./server.js",
"typecheck": "tsc",
"format": "prettier --write ."
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@remix-run/css-bundle": "^2.5.1",
"@remix-run/express": "^2.5.1",
"@remix-run/node": "^2.5.1",
"@remix-run/react": "^2.5.1",
"clsx": "^2.1.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"date-fns": "^3.3.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"isbot": "^4.4.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.3",
"source-map-support": "^0.5.21",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@remix-run/dev": "^2.5.1",
"@remix-run/eslint-config": "^2.5.1",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/source-map-support": "^0.5.10",
"chokidar": "^3.5.3",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}