-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@softwareventures/webpack-config",
"version": "0.0.0-development",
"description": "Standard webpack configuration for Software Ventures Limited",
"author": "Daniel Cassidy <mail@danielcassidy.me.uk>",
"homepage": "https://github.com/softwareventures/webpack-config",
"bugs": "https://github.com/softwareventures/webpack-config/issues",
"repository": "github:softwareventures/webpack-config",
"license": "ISC",
"scripts": {
"commit": "cz",
"fix": "tsc --noEmit && eslint . --fix && prettier --write .",
"lint": "tsc --noEmit && eslint . && prettier --check .",
"prepare": "husky && tsc",
"semantic-release": "semantic-release",
"test": "echo No tests yet"
},
"sideEffects": false,
"engines": {
"node": "^18 || ^20 || >=22"
},
"dependencies": {
"@softwareventures/array": "^7.0.0",
"@softwareventures/dictionary": "^2.1.1",
"@softwareventures/nullable": "^3.1.0",
"@softwareventures/tsconfig": "^6.0.0 || ^7.0.0",
"css-loader": "^6.0.0",
"cssnano": "^6.0.1 || ^7.0.0",
"ejs-loader": "^0.5.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0 || ^5.0.0",
"html-minifier-terser": "^7.2.0",
"html-webpack-plugin": "^5.0.0",
"json-typescript": "^1.1.2",
"less": "^4.1.1",
"less-loader": "^11.1.3 || ^12.0.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.2.5",
"postcss-loader": "^7.3.3 || ^8.0.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.1.1",
"tslib": "^2.1.0",
"unknown": "^0.2.5"
},
"bundleDependencies": [
"css-loader",
"cssnano",
"ejs-loader",
"extract-loader",
"file-loader",
"html-loader",
"html-minifier-terser",
"html-webpack-plugin",
"less",
"less-loader",
"mini-css-extract-plugin",
"postcss",
"postcss-loader",
"style-loader",
"terser-webpack-plugin"
],
"peerDependencies": {
"ts-loader": "^8.0.0 || ^9.0.0",
"typescript": "^4.2.0 || ^5.0.0",
"webpack": "^5.21.2",
"webpack-dev-server": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.5.0",
"@softwareventures/eslint-config": "7.9.0",
"@softwareventures/precise-commits": "4.0.15",
"@softwareventures/prettier-config": "4.0.0",
"@softwareventures/semantic-release-config": "5.0.0",
"@types/html-minifier-terser": "7.0.2",
"@types/html-webpack-plugin": "3.2.9",
"@types/terser-webpack-plugin": "5.2.0",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "4.7.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitizen": "4.3.1",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-sonarjs": "0.25.1",
"husky": "9.1.7",
"inquirer": "9.3.7",
"pinst": "3.0.0",
"prettier": "3.3.3",
"semantic-release": "22.0.12",
"semantic-release-pinst": "1.0.4",
"typescript": "5.6.2",
"webpack": "5.94.0"
},
"eslintConfig": {
"root": true,
"extends": "@softwareventures",
"rules": {
"@typescript-eslint/no-namespace": "off"
}
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"release": {
"extends": "@softwareventures/semantic-release-config"
}
}