-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.12 KB
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
105
106
107
108
109
110
111
112
113
114
{
"name": "react-typescript-template",
"version": "1.0.0",
"private": true,
"author": {
"name": "Afzaal Ahmad",
"email": "afzaalahmad866@gmail.com",
"url": "https://github.com/afzaalahmad"
},
"engines": {
"node": ">=10.21.0",
"yarn": ">=1.22.5"
},
"scripts": {
"start:dev": "react-scripts start",
"eject": "react-scripts eject",
"prebuild": "rimraf build",
"build": "INLINE_RUNTIME_CHUNK=false react-app-rewired build",
"start": "node -r dotenv/config server.js",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\"",
"lint": "npx eslint \"./src/**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "npx eslint --fix \"./src/**/*.{ts,tsx,js,jsx}\""
},
"dependencies": {
"@hookform/resolvers": "^1.0.1",
"axios": "^0.21.0",
"bootstrap": "^4.5.3",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-static-gzip": "^2.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"query-string": "^6.13.6",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-hook-form": "^6.11.5",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"secure-ls": "^1.2.6",
"styled-components": "^5.2.1",
"yup": "^0.31.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run format",
"npm run lint:fix",
"git add --all"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/bootstrap": "^4.5.0",
"@types/classnames": "^2.2.11",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.164",
"@types/react": "^16.9.55",
"@types/react-bootstrap": "^0.32.24",
"@types/react-dom": "^16.9.9",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-select": "^3.0.23",
"@types/styled-components": "^5.1.4",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^6.1.1",
"customize-cra": "^1.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"image-minimizer-webpack-plugin": "^1.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"react-app-rewired": "^2.1.6",
"react-scripts": "^3.4.4",
"rimraf": "^3.0.2",
"typescript": "^4.0.5",
"webpack-bundle-analyzer": "^4.2.0"
}
}