-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -o ./app/styles/tailwind.css --minify",
"dev": "concurrently \"yarn dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -o ./app/styles/tailwind.css --minify --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.0.6",
"@remix-run/serve": "^1.0.6",
"@remix-run/vercel": "^1.0.6",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reactjs-popup": "^2.0.5",
"remix": "^1.0.6",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@remix-run/dev": "^1.0.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.18",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"concurrently": "^6.4.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"tailwind-scrollbar-hide": "^1.1.6",
"tailwindcss": "^3.0.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}