forked from webclipper/web-clipper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.54 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.54 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "web-clipper",
"version": "1.20.0",
"description": "Clip anything to anywhere.",
"scripts": {
"dist": "tsc",
"test": "jest --verbose",
"dev": "NODE_ENV=development webpack --config webpack/webpack.dev.js --watch",
"dev:ff": "TARGET_BROWSER=Firefox NODE_ENV=development webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"lint": "eslint --ext .js,.ts,.tsx --ignore-pattern bad.* .",
"release": "npm run build && node script/release.js",
"release:beta": "npm run build && node script/release_beta.js",
"release:ff": "TARGET_BROWSER=Firefox npm run build && node script/release_ff.js",
"travis": "npm run build && node script/travis_release.js",
"lint-staged": "lint-staged",
"format": "node script/formatLocaleMessage.js"
},
"lint-staged": {
"src/**/*.{ts, tsx}": [
"eslint --fix",
"git add"
]
},
"pre-commit": [
"lint-staged"
],
"author": "DiamondYuan",
"license": "MIT",
"dependencies": {
"@shihengtech/hooks": "^0.0.7",
"@web-clipper/area-selector": "^0.1.1",
"@web-clipper/chrome-promise": "^0.1.2",
"@web-clipper/extensions": "^0.0.17",
"@web-clipper/highlight": "^0.0.20",
"@web-clipper/message-listener-combiner": "^0.1.0",
"@web-clipper/readability": "^0.2.1",
"@web-clipper/shared": "^0.0.20",
"@web-clipper/turndown": "^0.1.6",
"antd": "^3.26.6",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"codemirror": "^5.47.0",
"copy-to-clipboard": "^3.2.0",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.8.17",
"dva": "^2.6.0-beta.19",
"dva-loading": "^3.0.19",
"dva-logger": "^1.0.0",
"dva-model-creator": "^0.4.3",
"hypermd": "^0.3.11",
"immutability-helper": "^3.0.1",
"jquery": "^3.4.0",
"lodash": "^4.17.11",
"mobx": "^5.15.1",
"mobx-react": "^6.1.4",
"qrcode": "^1.4.1",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^3.9.2",
"react-markdown": "^4.1.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.3",
"remark": "^11.0.2",
"remark-pangu": "^1.0.1",
"showdown": "^1.9.0",
"tldjs": "^2.3.1",
"typedi": "^0.8.0",
"umi-request": "^1.2.15"
},
"devDependencies": {
"@diamondyuan/eslint-config-react-typescript": "^7.0.1",
"@types/chrome": "^0.0.91",
"@types/classnames": "^2.2.9",
"@types/codemirror": "^0.0.76",
"@types/crypto-js": "^3.1.43",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.11",
"@types/jquery": "^3.3.6",
"@types/lodash": "^4.14.132",
"@types/qrcode": "^1.3.3",
"@types/qs": "^6.9.0",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.8",
"@types/react-router": "^5.1.3",
"@types/redux-logger": "^3.0.6",
"@types/remote-redux-devtools": "^0.5.3",
"@types/showdown": "^1.9.3",
"@types/tldjs": "^2.3.0",
"@types/webpack-env": "^1.13.9",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-eslint": "^10.0.3",
"clean-webpack-plugin": "^0.1.19",
"compressing": "^1.4.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"less": "^3.8.1",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"pump": "^3.0.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.1",
"ts-import-plugin": "^1.5.5",
"ts-jest": "^24.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-chrome-extension-reloader": "^1.3.0",
"webpack-cli": "^3.3.2",
"webpack-create-extension-manifest-plugin": "^1.1.0",
"webpack-merge": "^4.2.2"
},
"manifest": {
"manifest_version": 2,
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": {
"128": "icon.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"tool.html"
]
}
}