-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.88 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
{
"name": "@njzy/mini-react-refresh-webpack-plugin",
"version": "0.2.3",
"engines": {
"node": ">=12"
},
"description": "A mini webpack plugin for react refresh",
"main": "dist/index.js",
"scripts": {
"dev": "npm run clean && tsc -b -w",
"build": "npm run clean && tsc -b",
"clean": "tsc -b --clean",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --fix --ext .ts,.tsx",
"prettier": "prettier --write src"
},
"author": "njzy",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,html,css,less,md}": "prettier --write"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/node": "^16.4.8",
"@types/sockjs": "^0.3.33",
"@types/sockjs-client": "^1.5.1",
"@types/webpack-dev-server": "^3.11.5",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"glob": "^7.1.7",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"react-refresh": "^0.10.0",
"sockjs": "^0.3.21",
"sockjs-client": "^1.5.1",
"typescript": "^4.3.5",
"webpack": "^5.49.0"
},
"peerDependencies": {
"react-refresh": "0.x"
},
"keywords": [
"webpack-plugin",
"react-refresh"
],
"repository": {
"type": "git",
"url": "git+https://github.com/njzydark/mini-react-refresh-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/njzydark/mini-react-refresh-webpack-plugin/issues"
},
"homepage": "https://github.com/njzydark/mini-react-refresh-webpack-plugin#readme",
"dependencies": {
"source-map": "^0.7.3"
}
}