generated from anandgupta193/react-enterprise-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.75 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "reactscratch",
"version": "1.0.0",
"description": "Awesome React Starter Kit that can scale for an enterprise application with the very easy maintainable codebase.",
"main": "index.jsx",
"scripts": {
"test": "jest --passWithNoTests",
"start-dev": "better-npm-run start-dev",
"build-dev": "better-npm-run build-dev",
"build-prod": "better-npm-run build-prod",
"build-analyze": "better-npm-run build-dev-analyze",
"eslint": "eslint --config ./.eslintrc --ext .js,jsx ./src --fix",
"storybook": "start-storybook",
"prettify": "prettier --config ./.prettierrc --ext .js,jsx,.scss ./src --write",
"stylelint": "stylelint --config ./.stylelintrc --aei .scss ./src"
},
"betterScripts": {
"build-dev": {
"command": "webpack --progress --config ./webpack/client/webpack.dev.config.js",
"env": {
"NODE_ENV": "development",
"PORT": 3000
}
},
"build-dev-analyze": {
"command": "webpack -w --progress --config ./webpack/client/webpack.dev.config.js",
"env": {
"NODE_ENV": "development",
"PORT": 3000,
"analyze": true
}
},
"build-prod": {
"command": "webpack --progress --config ./webpack/client/webpack.prod.config.js",
"env": {
"NODE_ENV": "production",
"PORT": 3000
}
},
"start-dev": {
"command": "webpack-dev-server --config ./webpack/client/webpack.dev.config.js --open"
}
},
"keywords": [
"react",
"javascript",
"webpack",
"babel",
"jsx",
"html",
"css",
"tailwind",
"server side rendering",
"eslint",
"storybook",
"redux",
"saga"
],
"author": "Anand (@aanandgupta193) & Shubham (@shubhamsWEB)",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/node": "^7.10.3",
"@storybook/react": "^5.3.21",
"axios": "^0.19.2",
"eslint-plugin-prettier": "^3.1.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^10.4.7",
"autoprefixer": "^9.8.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"better-npm-run": "^0.1.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.1",
"eslint-plugin-react-hooks": "^4.0.4",
"extract-css-chunks-webpack-plugin": "^4.7.5",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"stylelint": "^13.6.1",
"stylelint-webpack-plugin": "^2.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^5.0.9"
},
"lint-staged": {
"*.{js,jsx}": "npm run eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build-prod"
}
}
}