-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.64 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
84
85
86
{
"name": "circle",
"version": "0.0.1",
"license": "MIT",
"private": true,
"description": "An extension that make reading webpages easier",
"scripts": {
"i10n": "node ./scripts/seti10n.js",
"build": "node ./scripts/build.js",
"start": "webpack --config ./scripts/dev.js --watch",
"dev": "webpack --config ./scripts/dev.js",
"prod": "yarn build && webpack --config ./scripts/prod.js",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/chrome": "^0.0.196",
"@types/file-saver": "^2.0.5",
"@types/mark.js": "^8.11.8",
"@types/node": "^18.7.14",
"@types/turndown": "^5.0.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.5",
"chokidar": "^3.5.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.6",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "^6.2.0",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-webpack-plugin": "^3.3.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0",
"webpack-sources": "^3.2.3",
"webpackbar": "^5.0.2",
"ws": "^8.8.1",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"antd": "^4.23.0",
"classnames": "^2.3.1",
"file-saver": "^2.0.5",
"parse-filename": "^0.0.0",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}