generated from choisohyun/my-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
97 lines (97 loc) · 2.62 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
{
"name": "react-vite-ts-boilerplate",
"description": "Very Fast React + Vite Boilerplate",
"version": "1.2.11",
"license": "MIT",
"scripts": {
"dev": "vite",
"prod": "vite build",
"release": "standard-version",
"test": "vitest",
"coverage": "vitest run --coverage",
"semantic-release": "semantic-release"
},
"bin": "./bin/react-vite-ts-boilerplate.js",
"keywords": [
"react",
"boilerplate",
"typescript",
"starter"
],
"author": "sohyun-choi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/choisohyun/react-vite-ts-boilerplate.git"
},
"bugs": {
"url": "https://github.com/choisohyun/react-vite-ts-boilerplate/issues"
},
"homepage": "https://github.com/choisohyun/react-vite-ts-boilerplate#readme",
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.27.0"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@rollup/plugin-alias": "3.1.9",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/dom": "8.20.1",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "18.19.61",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "2.2.0",
"@vitest/ui": "0.34.7",
"autoprefixer": "10.4.20",
"babel-polyfill": "6.26.0",
"c8": "7.14.0",
"core-js": "3.38.1",
"cssnano": "5.1.15",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jsdom": "20.0.3",
"lint-staged": "13.3.0",
"postcss": "8.4.47",
"postcss-import": "15.1.0",
"postcss-load-config": "4.0.2",
"postcss-loader": "7.3.4",
"postcss-nested": "5.0.6",
"prettier": "2.7.1",
"sass": "1.80.5",
"semantic-release": "19.0.5",
"standard-version": "9.5.0",
"typescript": "4.9.5",
"vite": "3.2.11",
"vite-plugin-checker": "0.8.0",
"vite-plugin-html": "3.2.2",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.34.6"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}