-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.18 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.18 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
{
"scripts": {
"develop": "clear && printf '\\e[3J' && NODE_ENV=development yarn webpack --progress --color --devtool source-map 2>&1 | sed -E '/DEPRECATION WARNING|More info|@import|@use|@return|^ +╷|^ +╵|^ +│|^ +┌──>/,/^$/d' | sed '/WARNING: [0-9]+ repetitive deprecation warnings omitted./d'",
"staging": "clear && printf '\\e[3J' && NODE_ENV=development yarn webpack",
"production": "clear && printf '\\e[3J' && NODE_ENV=production yarn webpack --bail",
"lint:js_with_fix": "yarn eslint 'source/assets/javascripts/**/*.js' --fix; exit 0;",
"lint:css_with_fix": "yarn stylelint 'source/**/*.scss' --fix; exit 0;",
"lint:js": "yarn eslint 'source/assets/javascripts/**/*.js'",
"lint:css": "yarn stylelint 'source/**/*.scss'",
"test:webpack": "yarn webpack --config webpack.config.js"
},
"browserslist": [
"last 3 versions",
"> 1%"
],
"dependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"bootstrap": "4.6.2",
"breakpoints-js": "^1.0.6",
"clean-webpack-plugin": "^4.0.0",
"jquery": "^3.7.1",
"jquery-validation": "^1.21.0",
"normalize-scss": "^8.0.0",
"popper.js": "^1.16.1",
"sass": "^1.78.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"babel-loader": "^8.1.0",
"css-loader": "^0.28.9",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"extract-loader": "^5.1.0",
"file-loader": "^2.0.0",
"import-glob-loader": "^1.1.0",
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^7.3.1",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^6.8.1",
"url-loader": "^1.1.2"
}
}