This repository has been archived by the owner on May 17, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "electron-fanfou",
"version": "0.0.0",
"description": "An Electron app for Fanfou",
"main": "main/index.js",
"scripts": {
"test": "xo",
"start": "electron .",
"build": "next build renderer && next export renderer",
"dist": "npm run build && build",
"pack": "npm run build && build --dir",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanfoujs/electron-fanfou.git"
},
"keywords": [
"fanfou"
],
"author": "FanfouJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/fanfoujs/electron-fanfou/issues"
},
"homepage": "https://github.com/fanfoujs/electron-fanfou#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"electron": "^7.0.0",
"electron-builder": "^22.1.0",
"eslint-config-xo-react": "^0.22.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^2.0.0",
"next": "^9.0.0",
"xo": "^0.25.3"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"antd": "^3.14.1",
"delay": "^4.1.0",
"electron-better-ipc": "^0.8.0",
"electron-log": "^4.0.0",
"electron-next": "^3.1.5",
"electron-store": "^5.0.0",
"electron-util": "^0.13.0",
"fanfou-sdk": "^4.0.4",
"file-icon": "^3.1.0",
"p-event": "^4.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"unstated": "^2.1.1"
},
"xo": {
"parser": "babel-eslint",
"extends": "xo-react",
"envs": [
"node",
"browser"
],
"rules": {
"react/prop-types": 0,
"import/no-unassigned-import": 0
},
"settings": {
"react": {
"version": "16.7"
}
}
}
}