-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "react-base-ts",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "tsc && vite build",
"serve": "vite preview",
"prepare": "husky install",
"format": "prettier --write src/**/*.ts{,x}",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --write --ignore-path .gitignore \"**/*.+(js|json)\"",
"lint": "npm-run-all --parallel lint:format lint:fix"
},
"dependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "^4.3.2",
"vite": "^2.6.4"
}
}