-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@syntro-opensource/webpack-config",
"version": "1.4.0",
"description": "A package to streamline webpack configurations",
"main": "index.js",
"scripts": {
"lint": "eslint index.js defs/ --max-warnings=0",
"test": "jest",
"preversion": "git fetch",
"version": "git-chglog -o CHANGELOG.md --next-tag $npm_config_next && git add -A",
"postversion": "git add -A",
"release": "[[ ! -z $npm_config_next ]] && npm version $npm_config_next --git-tag-version=false"
},
"engines": {
"node": ">= 14.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syntro-opensource/webpack-config.git"
},
"keywords": [
"webpack",
"syntro",
"config"
],
"author": "Syntro GmbH",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/syntro-opensource/webpack-config/issues"
},
"homepage": "https://github.com/syntro-opensource/webpack-config#readme",
"dependencies": {
"@babel/core": "^7.11.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^10.0.2",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.1",
"cssnano": "^5.1.10",
"eslint": "^8.17.0",
"eslint-webpack-plugin": "^4.0.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"sass": "^1.26.10",
"sass-loader": "^13.0.0",
"stylelint": "^14.8.5",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.2.0",
"stylelint-webpack-plugin": "^4.1.0",
"webpack": "^5.7.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@popperjs/core": "^2.11.6",
"@syntro-opensource/browserslist-config-base": "^1.0.0",
"@syntro-opensource/eslint-config-base": "^1.0.2",
"bootstrap": "^5.2.3",
"jest": "^29.0.3",
"jquery": "^3.5.1"
}
}