-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.49 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
{
"name": "tia",
"productName": "tia",
"version": "1.0.0",
"description": "TIA Electron",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src --color"
},
"keywords": [],
"author": "Tony",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "yarn",
"icon": "src/assets/icon_dark.ico"
},
"electronWinstallerConfig": {
"name": "tia"
},
"electronInstallerDebian": {},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "",
"name": ""
},
"windowsStoreConfig": {
"packageName": "",
"name": "tia"
}
}
},
"dependencies": {
"ali-oss": "^5.0.0",
"async": "^2.5.0",
"axios": "^0.18.0",
"bluebird": "^3.3.1",
"body-parser": "~1.17.1",
"cheerio": "^1.0.0-rc.2",
"chromeless": "^1.5.1",
"config": "^1.28.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"crypto-js": "^3.1.9-1",
"ejs": "~2.5.6",
"electron-compile": "^6.4.2",
"express": "^4.15.5",
"fs-extra": "^5.0.0",
"html-docx-js": "^0.3.1",
"lowdb": "^1.0.0",
"moment": "^2.13.0",
"morgan": "~1.8.1",
"nodemailer": "^4.0.1",
"object-path": "^0.11.4",
"parse": "^1.11.1",
"puppeteer": "^1.2.0",
"request": "^2.81.0",
"socket.io-client": "^2.1.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.1.1",
"electron-prebuilt-compile": "1.8.4",
"eslint": "3",
"eslint-config-airbnb": "15",
"eslint-plugin-import": "2",
"eslint-plugin-jsx-a11y": "5",
"eslint-plugin-react": "7"
}
}