This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.08 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
{
"name": "r9-understrap-child",
"version": "1.0.0",
"private": true,
"scripts": {
"eslint": "eslint --ignore-path .gitignore .",
"eslint:fix": "eslint --ignore-path .gitignore --fix .",
"lint": "npm-run-all eslint stylelint prettier",
"lint:fix": "npm-run-all eslint:fix stylelint:fix prettier:fix",
"prettier": "prettier --ignore-path .gitignore --check **/*.{css,html,js,json,md,scss,yml}",
"prettier:fix": "prettier --ignore-path .gitignore -l --write **/*.{css,html,js,json,md,scss,yml}",
"stylelint": "stylelint **/*.scss --ignore-path .gitignore",
"stylelint:fix": "stylelint **/*.scss --ignore-path .gitignore --fix",
"test": "jest",
"webpack:dev": "webpack --config webpack.dev.js",
"webpack:prod": "webpack --config webpack.prod.js",
"webpack:stats": "webpack --config webpack.prod.js --profile --json > stats.json",
"webpack:watch": "webpack --config webpack.dev.js --watch"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@fortawesome/fontawesome-free": "^5.13.1",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.0.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"popper.js": "^1.16.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-twbs-bootstrap": "^2.0.3",
"stylelint-prettier": "^1.1.2",
"terser-webpack-plugin": "^3.0.6",
"webfontloader": "^1.6.28",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
}
}