-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.42 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
{
"name": "rimdrive-app",
"description": "cloudrim storage client app",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"author": {
"name": "syhan",
"email": "syhan@cloudrim.co.kr",
"url": "https://www.cloudrim.co.kr"
},
"build": {
"appId": "com.cloudrim.rimdrive.app",
"productName": "RimdriveApp",
"copyright": "Copyright © 2019 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"linux": {
"target": ["deb"],
"category": "Utility"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"deb": {
"depends": ["gconf2", "gconf-service", "libnotify4", "libappindicator1", "libxtst6", "libnss3", "davfs2"]
}
},
"scripts": {
"start": "rescripts start",
"build": "cross-env NODE_PATH=src rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"cross-env NODE_PATH=src BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron . \"",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder -l"
},
"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"
]
},
"dependencies": {
"@material-ui/core": "4.6.0",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "^4.0.0-alpha.31",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"electron-dl": "^1.14.0",
"electron-is-dev": "^1.1.0",
"electron-log": "3.0.9",
"electron-prebuilt-compile": "^4.0.0",
"form-data": "3.0.0",
"immutable": "^4.0.0-rc.12",
"lowdb": "^1.0.0",
"qs": "6.9.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-redux": "7.1.3",
"react-router-dom": "^5.0.1",
"react-scripts": "3.2.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@rescripts/cli": "0.0.13",
"@rescripts/rescript-env": "0.0.11",
"concurrently": "5.0.0",
"cross-env": "^6.0.3",
"electron": "7.1.1",
"electron-builder": "22.1.0",
"typescript": "3.7.2",
"wait-on": "^3.3.0"
}
}