-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"postinstall": "remix setup node",
"build": "npm run build:css && cross-env NODE_ENV=production remix build",
"build:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development remix dev\"",
"dev:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css --watch",
"start": "cross-env NODE_ENV=production remix-serve build",
"lint": "eslint .",
"typecheck": "tsc -b",
"format": "prettier --write ."
},
"dependencies": {
"@remix-run/react": "^1.19.3",
"@remix-run/serve": "^1.18.1",
"cross-env": "^7.0.3",
"date-fns": "^2.30.0",
"nanoid": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix": "^1.19.3"
},
"devDependencies": {
"@remix-run/dev": "^1.19.1",
"@remix-run/eslint-config": "^1.19.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.8",
"concurrently": "^7.6.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
},
"sideEffects": false
}