-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.65 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.65 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
{
"name": "modified-react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "./build/index.js",
"scripts": {
"start": "webpack serve --config build-utils/webpack.config.js --env env=dev",
"build": "webpack --config build-utils/webpack.config.js --env env=prod",
"build:analyze": "npm run build -- --env addon=bundleanalyze",
"lint:fix": "eslint --ext .js --ext .jsx src --fix",
"lint": "eslint --ext .js --ext .jsx src",
"test": "lint-staged",
"prettify:fix": "prettier --write src/*.{js,jsx,scss,css}",
"pre-commit": "npm run prettify:fix && npm run lint:fix ",
"info": "node echo \"[ Linting and Prettifying Code ]. ps: Errors wont permit to commit & push code to repos \" -f 30 -b 103"
},
"keywords": [],
"author": "fargusMD",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-slick": "^0.28.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"dotenv-webpack": "^5.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"mini-css-extract-plugin": "^1.3.1",
"node-forge": "^0.10.0",
"node-sass": "^5.0.0",
"prettier": "2.1.2",
"react-hot-loader": "^4.13.0",
"sass": "*",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.5.1",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run info && npm run pre-commit && lint-staged ",
"pre-add": "npm run pre-commit"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs,json, scss}": [
"prettier --write",
"git add"
]
}
}