generated from keene2/react-best-practice-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.84 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
60
61
62
63
{
"name": "react-best-practice-project",
"bin": {
"CLI": "./bin/cli"
},
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"generate": "plop --plopfile internals/generators/index.js",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"prettify": "prettier --config .prettierrc 'src/*' --write"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"compose-function": "^3.0.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.2",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redux-thunk": "^2.4.1",
"sass": "^1.53.0"
},
"devDependencies": {
"@types/compose-function": "^0.0.30",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"typescript": "^4.7.4",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.5.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify & npm run lint-fix",
"pre-push": ""
}
}
}