-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "gb-printer-web-plugins",
"version": "1.0.0",
"description": "Plugins for the GB-Printer WebApp",
"scripts": {
"start": "webpack serve --config ./scripts/webpack.dev.js",
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rimraf dist/*",
"build:webpack": "webpack --config ./scripts/webpack.prod.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@octokit/rest": "^18.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"core-js": "^3.13.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.1",
"rimraf": "^3.0.2",
"url-loader": "^4.1.1",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"edge 18",
"not ie <= 11"
]
}