-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.16 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
{
"name": "rxt-portfo-3",
"version": "4.0.0",
"main": "index.js",
"private": true,
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"license": "MIT",
"description": "Hima Dionysus Balde customized and optimized React.js Portfolio Web App.",
"scripts": {
"prettier:check": "npx prettier --check \"src/**/*.{js,jsx}\"",
"prettier:write": "npx prettier --write \"src/**/*.{js,jsx}\"",
"test:espretty": "npx eslint-config-prettier \"src/**/*.{js,jsx}\"",
"lint": "npx eslint \"src/**/*.js\" --cache --fix",
"test:lint-rules": "npx eslint \"src/**/*.{js,jsx}\" --config .eslintrc.json",
"configtestpro": "npx webpack configtest webpack.config.js",
"configtestdev": "npx webpack configtest webpack.config.development.js",
"build": "npx webpack build --node-env production",
"build2": "npx webpack build --config webpack.config.js --node-env production",
"build3": "NODE_ENV=production npx webpack build --config webpack.config.js --node-env production",
"proServ": "npx webpack serve --config webpack.config.js --node-env production",
"proStats": "npx webpack --config webpack.config.js --stats-error-details=true --node-env production",
"configpro": "npx webpack -c webpack.config.js",
"configdev": "npx webpack -c webpack.config.development.js",
"devStats": "npx webpack --config webpack.config.development.js --stats-error-details=true --node-env development",
"devServ": "npx webpack serve --config webpack.config.development.js --node-env development",
"Serve": "serve -s dist",
"clean": "rm -rf dist/*"
},
"repository": {
"url": "https://github.com/bahim22/rxt-portfo-3"
},
"keywords": [
"React",
"Webpack",
"Babel",
"PostCSS",
"Portfolio",
"Bahim22",
"Dionysus Era Dev",
"tailwindcss"
],
"author": "Hima Balde (Dionysus Era Dev)",
"bugs": {
"url": "https://github.com/bahim22/rxt-portfo-3"
},
"homepage": "https://himabalde.netlify.com/",
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@fontsource/roboto": "latest",
"@mui/icons-material": "^5.6.1",
"@mui/material": "latest",
"@mui/styles": "latest",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.1",
"@tailwindcss/typography": "^0.5.2",
"axios": "^0.27.2",
"dotenv": "^16.3.1",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.0.24",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"cssnano": "^5.1.7",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^8.4.13",
"postcss-loader": "latest",
"postcss-preset-env": "latest",
"prettier": "^2.5.1",
"responsive-loader": "^2.3.0",
"sharp": "^0.30.5",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"browserslist": {
"production": [
">0.25%",
"not dead",
"not op_mini all"
],
"development": [
"last 2 chrome version",
"last 1 safari version",
"last 1 edge version"
]
}
}