-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.43 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.43 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
{
"name": "agness",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "webpack serve --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"eslint": "eslint src/**/*.js src/**/*.jsx -c .eslintrc.json",
"eslint-fix": "eslint src/**/*.js src/**/*.jsx -c .eslintrc.json --fix"
},
"keywords": [],
"author": "jairosalinas220",
"contributors": [
"Drylozu"
],
"browserslist": [
"defaults"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-function-name": "^7.14.5",
"@babel/plugin-transform-parameters": "^7.14.5",
"@babel/plugin-transform-react-display-name": "^7.14.5",
"@babel/plugin-transform-template-literals": "^7.14.5",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.2.15",
"postcss-loader": "^5.3.0",
"prettier": "^2.3.0",
"prettier-standard": "^16.4.1",
"react-refresh": "^0.9.0",
"style-loader": "^2.0.0",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^2.1.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpackbar": "^5.0.0-3"
},
"dependencies": {
"aos": "^2.3.4",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"core-js": "^3.15.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0"
}
}