-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "livehelper",
"version": "2.0.5",
"description": "帮你整合多个直播网站的关注列表",
"main": "build/index.js",
"scripts": {
"build": "node build/build.js",
"watch": "parcel watch src/*.html src/background.ts --public-url ./ --no-hmr",
"lint": "eslint './src/**/*.{ts,tsx}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:imspace/LiveHelper.git"
},
"author": "space",
"license": "MIT",
"dependencies": {
"@fluent/bundle": "^0.14.0",
"@fluent/react": "^0.10.0",
"@types/chrome": "0.0.89",
"@types/fluent__bundle": "^0.14.1",
"@types/fluent__react": "^0.10.0",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"deepmerge": "^4.2.2",
"node-html-parser": "^1.1.16",
"preact": "^10.0.5",
"typescript": "^3.6.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"archiver": "^3.1.1",
"eslint": "^6.7.1",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"less": "^3.10.3",
"lint-staged": "^9.5.0",
"parcel": "^1.12.4"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"browserslist": [
"last 2 Chrome versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint",
"*.tsx": "eslint"
}
}