-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "shisetsu-viewer",
"version": "1.0.0",
"private": false,
"description": "Shisetsu Viewer",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/trfv/shisetsu-viewer/"
},
"license": "MIT",
"author": "trfv",
"dependencies": {
"@apollo/client": "3.10.8",
"@auth0/auth0-spa-js": "2.1.3",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@mui/icons-material": "5.16.1",
"@mui/material": "5.16.1",
"@mui/x-date-pickers": "6.20.2",
"date-fns": "2.30.0",
"graphql": "16.9.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.24.1"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.6",
"@graphql-codegen/typescript-operations": "4.2.0",
"@graphql-codegen/typescript-react-apollo": "4.3.0",
"@storybook/addon-essentials": "8.0.5",
"@storybook/react": "8.0.5",
"@storybook/react-vite": "8.0.5",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@tsconfig/strictest": "2.0.3",
"@types/node": "20.11.28",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@vitejs/plugin-react-swc": "3.6.0",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-storybook": "0.8.0",
"happy-dom": "14.3.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"rollup-plugin-visualizer": "5.12.0",
"storybook": "8.0.5",
"storycap": "5.0.0",
"typescript": "5.4.2",
"vite": "5.1.7",
"vitest": "2.0.2",
"web-vitals": "3.5.2"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"generate": "graphql-codegen --require dotenv/config --config ./src/api/config.yml",
"start": "vite --port 3000",
"build": "tsc && vite build",
"build:analyze": "vite build --mode analyze",
"serve": "vite preview --port 3000",
"format:fix": "prettier --ignore-path .prettierignore --write",
"lint:fix": "eslint --ignore-path .eslintignore --fix",
"format:all": "npm run format:fix \"./src/**/*.ts*\"",
"lint:all": "npm run lint:fix \"./src/**/*.ts*\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"storycap": "storycap http://127.0.0.1:8080 --serverCmd \"npx http-server storybook-static -g -b\"",
"test": "TZ=Asia/Tokyo vitest",
"coverage": "TZ=Asia/Tokyo vitest run --coverage",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format:fix",
"npm run lint:fix"
]
}
}