-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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
{
"name": "glofox-test-app",
"version": "1.0.0",
"description": "Test app for Glofox",
"author": "Ritesh Makan",
"license": "MIT",
"keywords": [
"webpack",
"pug",
"scss",
"babel",
"core-js"
],
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.dev.js --progress",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.js --progress"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.2.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"core-js": "^3.8.3",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-beta.6",
"jquery": "^3.5.1",
"mini-css-extract-plugin": "^1.3.4",
"postcss": "^8.2.4",
"postcss-loader": "^4.2.0",
"prettier": "^2.2.1",
"prettier-webpack-plugin": "^1.2.0",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.18.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"workbox-webpack-plugin": "^6.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2"
}
}