-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.46 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -o ./app/styles/tailwind.css",
"dev": "concurrently \"yarn dev:css\" \"node -r dotenv/config node_modules/.bin/remix dev\"",
"dev:css": "tailwindcss -o ./app/styles/tailwind.css --watch",
"postinstall": "remix setup node",
"lint": "eslint 'app/**/*.ts?(x)'",
"lintFix": "eslint 'app/**/*.ts?(x)' --fix",
"format": "prettier --write \"app/**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@remix-run/react": "^1.1.1",
"@remix-run/serve": "^1.1.1",
"@remix-run/vercel": "^1.1.1",
"classnames": "^2.3.1",
"dotenv": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@remix-run/dev": "^1.1.1",
"@tailwindcss/line-clamp": "^0.3.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"concurrently": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.8",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}