-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.56 KB
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": "24.x"
},
"packageManager": "pnpm@10.33.2",
"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": "19.2.5",
"react-dom": "19.2.5",
"react-router": "7.14.2"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@storybook/addon-a11y": "10.3.5",
"@storybook/react": "10.3.5",
"@storybook/react-vite": "10.3.5",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.5.0",
"jsdom": "29.0.2",
"prettier": "3.8.3",
"storybook": "10.3.5",
"stylelint": "17.8.0",
"stylelint-config-recess-order": "7.7.0",
"stylelint-config-standard": "40.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vite": "8.0.10",
"vitest": "4.1.5"
}
}