-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"name": "tiny",
"productName": "Tiny",
"version": "1.0.0",
"description": "Compress PNG and JPG",
"author": "BryanLi93 <lisujianskills@outlook.com>",
"repository": "https://github.com/BryanLi93/TinyPNGClient.git",
"main": "./main/main.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server",
"start-ele": "cross-env NODE_ENV=development electron .",
"build": "cross-env NODE_ENV=production && webpack && build",
"build-all": "cross-env NODE_ENV=production && webpack && build -mwl"
},
"build": {
"appId": "com.electron.tiny",
"directories": {
"output": "./dist/app"
},
"files": [
"config/**/*",
"main/**/*",
"dist/web/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg",
"icon": "./assets/compressor.png"
},
"win": {
"icon": "./assets/compressor.png"
}
},
"dependencies": {
"antd": "^3.9.2",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-router-dom": "^4.3.1",
"tinify": "^1.6.0-beta.2"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-import": "^1.8.0",
"babel-plugin-styled-components": "^1.7.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"electron": "^3.0.1",
"electron-builder": "^20.28.4",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.0",
"styled-components": "^3.4.9",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"license": "MIT"
}