-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "close-to-2",
"version": "2.0.0",
"private": true,
"type": "module",
"homepage": "https://h-yoshikawa44.github.io/close-to-2/",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint-check": "npm run lint:eslint && npm run check:prettier",
"lint:eslint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"check:prettier": "prettier --check \"./{public,src}/**/*.{js,jsx,ts,tsx,html,gql,graphql,json}\"",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run check:prettier -- --write",
"deploy": "npm run build && gh-pages -d dist",
"preinstall": "typesync || echo 'skip typesync'",
"prepare": "simple-git-hooks || echo 'Can not set git hooks'"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-share": "^4.4.1"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/eslint-config-prettier": "^6.11.0",
"@types/gh-pages": "^3.2.1",
"@types/lint-staged": "^13.2.0",
"@types/node": "^18.17.1",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"typesync": "^0.11.1",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.1"
},
"volta": {
"node": "18.17.1",
"npm": "9.6.7"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"prepare-commit-msg": "./.githooks/prepare-commit-msg \"$@\""
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write --loglevel=error",
"eslint --fix --quiet"
],
"./**/*.{html,gql,graphql,json}": [
"prettier --write --loglevel=error"
]
}
}