-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
130 lines (130 loc) · 4.01 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
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
{
"name": "breader",
"version": "2.2.2",
"private": true,
"description": "A simple RSS reader.",
"homepage": "https://breeze2.github.io/breader",
"author": {
"email": "805511939@qq.com",
"name": "breezelin",
"url": "https://github.com/breeze2"
},
"repository": {
"type": "git",
"url": "https://github.com/breeze2/breader.git"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"main": "public/electron.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"prebuild": "yarn build:main",
"preelectron-dev": "yarn build:main",
"preelectron-dist": "yarn build",
"electron-dev": "cross-env BROWSER=none concurrently \"yarn start\" \"wait-on http://127.0.0.1:3000 && electron .\"",
"electron-dist": "electron-builder build",
"electron-pack": "electron-builder build",
"electron-start": "electron .",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build:main": "yarn webpack --config ./main/webpack.config.js",
"lint": "tslint src/**/*.ts src/**/*.tsx main/**/*.ts -e src/serviceWorker.ts",
"test": "react-app-rewired test",
"test:coverage": "react-app-rewired test --coverage",
"eject": "react-scripts eject",
"commit": "git cz",
"commit:amend": "git commit --amend --no-edit",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "yarn check --integrity && pretty-quick --staged && yarn lint && rm -f ./public/electron.js*",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@sentry/electron": "^1.0.0",
"chardet": "^0.8.0",
"custom-electron-titlebar": "^3.1.0",
"electron-is-dev": "^1.0.1",
"electron-updater": "^4.2.0",
"feedparser": "^2.2.9",
"iconv-lite": "^0.5.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@jest-runner/electron": "^2.0.2",
"@sentry/cli": "^1.49.0",
"@types/chardet": "^0.8.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/feedparser": "^2.2.3",
"@types/highlight.js": "^9.12.3",
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@types/pouchdb-browser": "^6.1.3",
"@types/pouchdb-find": "^6.3.4",
"@types/react": "16.9.13",
"@types/react-custom-scrollbars": "^4.0.6",
"@types/react-dom": "16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-virtualized": "^9.21.5",
"antd": "^3.25.3",
"async-task-throttle": "^1.0.0",
"babel-plugin-import": "^1.13.0",
"concurrently": "^5.0.0",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"customize-cra": "^0.9.1",
"cz-conventional-changelog": "3.0.2",
"electron": "^7.1.2",
"electron-builder": "^22.2.0",
"electron-devtools-installer": "^2.2.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"highlight.js": "^9.16.2",
"husky": "^3.1.0",
"immutable": "^4.0.0-rc.12",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"pouchdb-adapter-memory": "^7.1.1",
"pouchdb-browser": "^7.1.1",
"pouchdb-find": "^7.1.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-app-rewired": "^2.1.5",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.12.0",
"react-intl": "^3.7.0",
"react-redux": "^7.1.3",
"react-scripts": "3.2.0",
"react-virtualized": "^9.21.2",
"redux": "^4.0.4",
"redux-saga": "^1.1.3",
"standard-version": "^7.0.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.1.0",
"typescript": "3.6.3",
"wait-on": "^3.3.0",
"webpack-cli": "^3.3.10"
}
}