-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·57 lines (57 loc) · 1.55 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
{
"name": "webftp",
"version": "1.0.0",
"description": "React + Electron FTP client",
"main": "public/electron-starter.js",
"private": true,
"homepage": "./",
"build": {
"appId": "com.electron.webftp",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"extends": null
},
"preelectron-pack": "npm run build",
"scripts": {
"electron": "electron .",
"react": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev": "concurrently 'npm run react' 'stylus -w ./src/index.styl' 'wait-on http://localhost:3000/ && npm run electron'",
"pack": "npm run build && node envupdater.js && npm run electron-pack",
"electron-pack": "electron-builder -c.extraMetadata.main=build/electron-starter.js"
},
"repository": "https://github.com/gmrchk/webftp",
"keywords": [
"Electron",
"FTP client"
],
"author": "Georgy Marchuk",
"license": "MIT",
"dependencies": {
"express": "^4.16.4",
"informed": "^1.7.0",
"jsftp": "^2.1.3",
"localstoragedb": "^2.3.1",
"node-localstorage": "^1.3.1",
"react": "^16.4.1",
"react-contextmenu": "^2.9.2",
"react-dom": "^16.4.1",
"react-s-alert": "^1.4.1",
"react-scripts": "1.1.4",
"react-tooltip": "^3.6.1",
"socks": "^2.2.1"
},
"devDependencies": {
"concurrently": "^3.6.0",
"electron": "~1.7.8",
"electron-builder": "^20.22.0",
"wait-on": "^2.1.0"
}
}