-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.26 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
{
"name": "tide-app",
"version": "0.1.0",
"private": true,
"author": {
"name": "Vance McHargue",
"email": "[email protected]",
"url": "https://blazerepo.com"
},
"build": {
"appId": "com.vancer.tide",
"productName": "TIDE",
"copyright": "Copyright © 2019 ${vancer}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"dependencies": {
"@material-ui/core": "^4.5.0",
"@material-ui/icons": "^4.4.3",
"@material-ui/lab": "^4.0.0-alpha.28",
"babel-plugin-wildcard": "^5.0.0",
"bluebird": "^3.7.0",
"bootstrap": "^4.3.1",
"brace": "^0.11.1",
"custom-electron-titlebar": "^3.1.0",
"directory-tree": "^2.2.4",
"electron-is-dev": "^1.1.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"overlayscrollbars": "^1.9.1",
"overlayscrollbars-react": "^0.1.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-ace": "^7.0.4",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.10.2",
"react-filetree-electron": "^1.2.2",
"react-helmet": "^5.2.1",
"react-hotkeys": "^2.0.0-pre9",
"react-scripts": "3.2.0",
"react-split-pane": "^0.1.87",
"react-treebeard": "^3.2.4",
"timers": "^0.1.1"
},
"main": "public/electron.js",
"scripts": {
"electron-dev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "yarn build -mw"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@rescripts/cli": "^0.0.12",
"@rescripts/rescript-env": "^0.0.10",
"concurrently": "^4.1.0",
"electron": "^4.0.6",
"electron-builder": "^21.2.0",
"typescript": "^3.6.3",
"wait-on": "^3.2.0"
}
}