-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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": "todo-recoil",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write src/*",
"prepare": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@emotion/react": "^11.7.1",
"eslint-plugin-import": "^2.25.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.39.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.7.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "7.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-jest": "^26.1.2",
"eslint-plugin-react": "^7.29.4",
"husky": "^6.0.0",
"prettier": "^2.6.0",
"prettier-eslint": "^13.0.0",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-plugin-checker": "^0.4.3",
"vite-plugin-pwa": "^0.11.13"
},
"volta": {
"node": "16.14.2",
"yarn": "1.22.18"
}
}