-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.02 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
{
"name": "casarin.dev",
"version": "1.0",
"homepage": "https://casarin.dev",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:check": "eslint --ext .js,.jsx,.ts,.tsx,.json --ignore-path .prettierignore .",
"lint:fix": "eslint src/**/*.{ts,js,tsx,jsx} --fix",
"tsc:check": "tsc --noEmit",
"prettier:check": "prettier --check src/**/*.{ts,js,tsx,jsx}",
"prettier:fix": "prettier --config .prettierrc.js \"src/**/*.{ts,js,tsx,jsx}\" --write",
"prepare": "husky install"
},
"dependencies": {
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.2.1",
"@mui/styles": "^5.2.1",
"@mui/system": "^5.2.2",
"axios": "^0.24.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^1.1.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.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-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.2",
"vite": "^2.6.14"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --cache src/**/*.{js,ts} --fix",
"prettier --config .prettierrc.js \"src/**/*.{ts,tsx,js,jsx}\" --write"
]
}
}