-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.3 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
{
"private": true,
"name": "favicion-detector",
"repository": "git@github.com:BlackGlory/favicon-detector.git",
"author": "BlackGlory <woshenmedoubuzhidao@blackglory.me>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src",
"clean": "rimraf dist",
"build": "webpack --config webpack.prod.js",
"dev": "webpack --watch --config webpack.dev.js"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint clean build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/chrome": "^0.0.254",
"@types/object-hash": "^3.0.6",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"assert": "^2.1.0",
"autoprefixer": "^10.4.16",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.3.3",
"util": "^0.12.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@badrap/bar-of-progress": "^0.2.2",
"@blackglory/prelude": "^0.3.4",
"antd": "^5.12.4",
"extra-blob": "^0.1.2",
"extra-react-hooks": "^0.6.6",
"extra-utils": "^5.5.2",
"extra-webextension": "^0.4.0",
"immer": "^10.0.3",
"iterable-operator": "^4.0.6",
"object-hash": "^3.0.0",
"parse-favicon": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.1.0",
"use-immer": "^0.9.0"
}
}