-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.15 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
{
"name": "postmate",
"version": "1.3.1",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"description": "A rest api tool with git base yaml control",
"scripts": {
"js-start": "REACT_APP_VERSION=$npm_package_version rescripts start",
"js-build": "REACT_APP_VERSION=$npm_package_version rescripts build",
"test": "rescripts test --watchAll=false",
"dev": "concurrently \"BROWSER=none npm run js-start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"prebuild": "npm run js-build",
"build": "electron-builder -m"
},
"author": {
"name": "Gary Xue",
"email": "[email protected]",
"url": "https://blog.garyxue.me"
},
"build": {
"appId": "me.garyxue.postmate",
"productName": "Postmate",
"copyright": "Copyright © 2019 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 1 chrome version"
],
"development": [
"last 1 chrome version"
]
},
"dependencies": {
"body-parser": "^1.19.0",
"electron-is-dev": "^1.1.0",
"electron-json-storage": "^4.1.8",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-syntax-highlighter": "^11.0.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.1"
},
"devDependencies": {
"@rescripts/cli": "^0.0.13",
"@rescripts/rescript-env": "^0.0.11",
"@types/electron-json-storage": "^4.0.0",
"@types/jest": "24.0.19",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.144",
"@types/node": "12.11.7",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@types/react-syntax-highlighter": "^11.0.1",
"concurrently": "^5.0.0",
"electron": "^7.0.0",
"electron-builder": "^21.2.0",
"react-scripts": "3.2.0",
"typescript": "3.6.4",
"wait-on": "^3.3.0"
}
}