-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.36 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.36 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": "vite-starter",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc -b && vite build",
"build:dev": "vite build --mode development",
"preview": "vite preview",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"prettier": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"test": "npm run lint && npm run prettier",
"prepare": "mkdir -p .husky && chmod -R +x .husky",
"commit": "cz",
"release-standard": "standard-version",
"release": "npx semantic-release && git push --follow-tags"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"commitizen": "^4.3.1",
"commitlint": "^19.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"standard-version": "^9.5.0",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"lint-staged": {
"*.ts": [
"eslint"
],
"*.tsx": [
"eslint"
],
"*.js": [
"eslint"
],
"*.jsx": [
"eslint"
],
"*.css": [
"prettier --check"
],
"*.json": [
"prettier --check"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}