generated from mohitkyadav/react-ts-sass-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "entumany",
"version": "0.1.0",
"private": true,
"author": "Mohit Kumar Yadav <[email protected]>",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/dom-speech-recognition": "^0.0.1",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-helmet": "^6.1.0",
"@types/react-syntax-highlighter": "^11.0.4",
"axios": "^1.2.2",
"clsx": "^1.1.1",
"date-fns": "^2.16.1",
"i18next": "^22.4.10",
"lodash-es": "^4.17.15",
"lucide-react": "^0.109.0",
"magic-regexp": "^0.6.2",
"mdi-react": "^9.1.0",
"node-sass": "^8.0.0",
"normalize.css": "^8.0.1",
"qrcode": "^1.4.4",
"react": "18.2.0",
"react-cool-onclickoutside": "^1.5.5",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "18.2.0",
"react-helmet": "^6.1.0",
"react-hot-toast": "^2.4.0",
"react-i18next": "^12.1.5",
"react-router-dom": "^6.7.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.3.0",
"react-tooltip": "^5.7.5",
"typescript": "4.9",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "tsc --noEmit && eslint \"./src/**/*.{js,ts,tsx}\"",
"prettier": "prettier --write \"{,!(node_modules)/**/}*.{ts,tsx,js,json,css,less,scss}\"",
"start": "react-scripts start",
"test": "jest --passWithNoTests"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-react": "7.9.0",
"@types/lodash-es": "^4.17.3",
"@types/qrcode": "^1.3.5",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{,!(node_modules)/**/}*.{ts,tsx,js}": [
"eslint --cache --fix",
"prettier --write"
],
"{,!(node_modules)/**/}*.{css,scss}": [
"prettier --write"
]
}
}