-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@funboxteam/webpack-dev-server-firewall",
"version": "3.0.0",
"description": "Firewall for webpack-dev-server",
"keywords": [
"webpack",
"webpack-dev-server",
"firewall"
],
"repository": {
"type": "git",
"url": "https://github.com/funbox/webpack-dev-server-firewall"
},
"main": "public/index.js",
"types": "public/index.d.ts",
"bin": {
"webpack-dev-server-firewall": "./public/cli.js"
},
"author": "Igor Adamenko <[email protected]> (https://igoradamenko.com)",
"license": "MIT",
"scripts": {
"lint": "eslint --cache --ext .ts ./src",
"build": "tsc",
"prepack": "rm -rf public && npm run build",
"prepare": "husky"
},
"devDependencies": {
"@funboxteam/eslint-config": "7.4.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.2.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"typescript": "5.3.3",
"webpack-dev-server": "5.0.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix --cache .eslintrc.js"
]
}
}