-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
119 lines (119 loc) · 3.56 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
{
"name": "Protoman",
"version": "0.4.1",
"description": "Basic Postman clone with protobuf functionalities",
"author": "Inchan Hwang, Louis Lee",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"start": "electron dist/main.js",
"test": "jest",
"dev": "npm run dev-renderer & npm run dev-main &",
"kill-dev": "killall node",
"dev-renderer": "cross-env NODE_ENV=development webpack --config renderer-webpack.config.js --watch",
"dev-main": "cross-env NODE_ENV=development webpack --config main-webpack.config.js --watch",
"build": "npm run build-main && npm run build-renderer",
"build-renderer": "cross-env NODE_ENV=production webpack --config renderer-webpack.config.js",
"build-main": "cross-env NODE_ENV=production webpack --config main-webpack.config.js",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist:all": "CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder -mwl",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux"
},
"build": {
"appId": "co.protoman.protoman",
"files": [
"dist/**/*",
"package.json"
],
"directories": {
"buildResources": "assets",
"output": "build"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg",
"hardenedRuntime": true,
"entitlements": "./pkg_resources/Entitlements.plist"
},
"nsis": {
"createDesktopShortcut": "always"
},
"extends": null,
"dmg": {
"contents": [
{
"x": 140,
"y": 220
},
{
"x": 400,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Development"
}
},
"dependencies": {
"antd": "^4.1.3",
"immer": "^9.0.6",
"node-fetch": "^2.6.1",
"protobufjs": "^6.8.8",
"react": "^16.12.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-tooltip": "^4.1.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@types/google-protobuf": "^3.7.2",
"@types/html-webpack-plugin": "^3.2.2",
"@types/jest": "^25.1.4",
"@types/node-fetch": "^2.5.5",
"@types/react": "^16.9.19",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-tooltip": "^3.11.0",
"@types/redux": "^3.6.0",
"@types/styled-components": "^4.4.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"cross-env": "^7.0.3",
"css-loader": "^3.4.2",
"electron": "^9.4.0",
"electron-builder": "^22.2.0",
"electron-store": "^8.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"less-vars-to-js": "^1.3.0",
"node-loader": "^0.6.0",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"ts-import-plugin": "^1.6.5",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-protoc-gen": "^0.12.0",
"typescript": "^3.8.3",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10"
}
}