-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.56 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
{
"name": "starter-for-react",
"version": "1.0.0",
"description": "hey3's boilerplate for Web Frontend",
"keywords": [
"react",
"typescript",
"vite",
"pnpm",
"boilerplate-template"
],
"homepage": "https://github.com/hey3/starter-for-react#readme",
"bugs": {
"url": "https://github.com/hey3/starter-for-react/issues"
},
"license": "MIT",
"author": "hey3",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hey3/starter-for-react.git"
},
"engines": {
"node": "20.x"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier . --check --ignore-unknown",
"format:fix": "prettier . --write --ignore-unknown",
"lint": "pnpm lint:eslint && pnpm lint:style",
"lint:fix": "pnpm lint:eslint-fix && pnpm lint:style-fix",
"lint:eslint": "eslint ./**/*.{js,ts,tsx}",
"lint:eslint-fix": "eslint --fix ./**/*.{js,cjs,ts,tsx}",
"lint:style": "stylelint 'src/**/*.css'",
"lint:style-fix": "stylelint --fix 'src/**/*.css'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:virtual-update": "vitest run --update",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit --incremental false"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2"
},
"devDependencies": {
"@eslint/js": "9.12.0",
"@storybook/addon-a11y": "8.3.7",
"@storybook/addon-essentials": "8.3.7",
"@storybook/react": "8.3.7",
"@storybook/react-vite": "8.3.7",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react-swc": "3.7.2",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.10.0",
"jsdom": "25.0.1",
"prettier": "3.3.3",
"storybook": "8.3.7",
"stylelint": "16.9.0",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-standard": "36.0.1",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1",
"vite": "5.4.12",
"vitest": "2.1.8"
}
}