This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.05 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
63
64
65
66
{
"private": true,
"name": "remix-app-template",
"description": "remix-template",
"license": "MIT",
"scripts": {
"build:remix": "remix build",
"dev:remix": "node -r dotenv/config node_modules/.bin/remix dev",
"build:css": "postcss styles --base styles --dir app/styles --env production",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"dev": "concurrently \"npm:dev:*\"",
"build": "npm run build:css && npm run build:remix",
"postinstall": "remix setup node",
"start": "remix-serve build",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --check .",
"fix": "run-s -l -c fix:eslint fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"prepare": "husky install"
},
"dependencies": {
"@remix-run/react": "1.1.1",
"@remix-run/serve": "1.1.1",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "0.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "1.1.1"
},
"devDependencies": {
"@remix-run/dev": "1.1.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"autoprefixer": "^10.4.0",
"concurrently": "^6.4.0",
"dotenv": "^10.0.0",
"eslint": "8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"postcss": "8.4.5",
"postcss-cli": "9.1.0",
"prettier": "2.5.1",
"tailwindcss": "3.0.7",
"typescript": "4.5.4"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"lint-staged": {
"*.{ts,tsx}": "yarn fix:eslint",
"*": "yarn fix:prettier"
}
}