-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "quotable-react",
"version": "1.0.0",
"description": "A frontend for the Quotable API and React Native App",
"main": "src/index.js",
"repository": "git@github.com:UltiRequiem/quotable-react.git",
"author": "Eliaz Bobadilla <eliaz.bobadilladev@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack serve",
"dev": "webpack serve --config webpack.config.dev.js",
"build": "webpack",
"format": "prettier --write .",
"lint": "eslint . && prettier --check ."
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^4.0.0",
"clsx": "^1.1.1",
"css-loader": "^6.5.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^8.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-loader": "^3.1.0",
"html-minimizer-webpack-plugin": "^3.5.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-plugin-jsdoc": "^0.3.30",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}