-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "vite-typescript-template",
"author": "Del",
"license": "MIT",
"private": "true",
"type": "module",
"scripts": {
"prepare": "husky install",
"update": "npx npm-check -u",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react-swc": "^3.2.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"stylelint": "15.2.0",
"stylelint-config-standard": "30.0.1",
"stylelint-order": "6.0.2",
"stylelint-scss": "^4.4.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-html": "^3.2.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "npx eslint --cache --fix",
"*.{css,sass,scss}": "npx stylelint --cache --fix",
"*.{js,ts,jsx,tsx,json,md}": "npx prettier --cache --write -c"
}
}