-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"author": {
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
},
"bugs": {
"email": "chocholatom1997@gmail.com",
"url": "https://github.com/premierstacks/webpack-stack/issues"
},
"contributors": [
{
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
}
],
"dependencies": {
"babel-loader": "^10.0.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^13.0.1",
"css-minimizer-webpack-plugin": "^7.0.2",
"html-loader": "^5.1.0",
"html-minimizer-webpack-plugin": "^5.0.3",
"html-webpack-plugin": "^5.6.4",
"image-minimizer-webpack-plugin": "^4.1.4",
"json-minimizer-webpack-plugin": "^5.0.1",
"postcss-loader": "^8.1.1",
"sass-embedded": "^1.90.0",
"sass-loader": "^16.0.5",
"sharp": "^0.34.3",
"style-loader": "^4.0.0",
"svgo": "^4.0.0",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.2",
"webpack": "^5.101.3",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"workbox-webpack-plugin": "^7.4.0"
},
"description": "premierstacks webpack stack",
"devDependencies": {
"@premierstacks/eslint-stack": "github:premierstacks/eslint-stack#main",
"@premierstacks/prettier-stack": "github:premierstacks/prettier-stack#main"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
},
"homepage": "https://github.com/premierstacks/webpack-stack",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"webpack-stack"
],
"license": "CC-BY-ND-4.0",
"main": "./src/index.js",
"name": "@premierstacks/webpack-stack",
"repository": "github:premierstacks/webpack-stack",
"scripts": {
"check": "npm run lint && npm run security",
"clean": "npm run clean:npm",
"clean:npm": "git clean -xfd ./node_modules ./package-lock.json",
"commit": "npm run fix && npm run check && npm run local",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w .",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"local": "npm run npm:install",
"npm:audit": "npm audit --audit-level info --include prod --include dev --include peer --include optional",
"npm:install": "npm install --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"npm:update": "npm update --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"security": "npm run npm:audit"
},
"sideEffects": false,
"type": "module"
}