-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"postinstall": "remix setup node",
"start": "remix-serve build",
"format": "prettier --write .",
"lint": "eslint --ignore-path .gitignore --fix --ext js,ts,tsx .",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.@(js|ts|tsx|md)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@remix-run/react": "^1.0.3",
"@remix-run/serve": "^1.0.3",
"@ryanflorence/md": "^7.0.1",
"front-matter": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.0.3"
},
"devDependencies": {
"@remix-run/dev": "^1.0.3",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"prettier-plugin-tailwind": "^2.2.12",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}