-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.3 KB
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
{
"name": "planche",
"version": "1.0.0",
"description": "MySQL GUI Client Tool",
"keywords": [
"MySQL",
"GUI",
"ExtJS"
],
"homepage": "https://github.com/plancheproject/planche",
"bugs": {
"url": "https://github.com/plancheproject/planche/issues"
},
"license": "GPLv3",
"author": "Jeong JuWon <2jw0718@gmail.com>",
"main": "index.html",
"repository": {
"type": "git",
"url": "https://github.com/plancheproject/planche.git"
},
"scripts": {
"desktop": "gulp --platform=planche-desktop",
"wordpress": "gulp --platform=planche-wordpress",
"chrome": "gulp --platform=planche-chrome",
"start": "gulp",
"build-desktop": "gulp build --platform=planche-desktop",
"build-wordpress": "gulp build --platform=planche-wordpress",
"build-chrome": "gulp build --platform=planche-chrome",
"build": "gulp build",
"packager": "cd dist/planche-desktop && npm update && cd ../../ && electron-packager ./dist/planche-desktop --all --out=dist/planche-desktop-out --overwrite --icon=./dist/planche-desktop/resources/images/icon-planche.png.icns",
"php": "php src/tunneling/php/planche.php",
"node": "node src/tunneling/nodejs/planche.js"
},
"dependencies": {
"deferred": "^0.7.5",
"express": "^4.14.0",
"mysql": "^2.11.1",
"nedb": "^1.8.0"
},
"devDependencies": {
"electron": "^1.4.1",
"electron-packager": "^8.3.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-file": "^0.3.0",
"gulp-livereload": "^3.8.1",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-webserver": "^0.9.1",
"run-sequence": "^1.2.2",
"through": "^2.3.8",
"webpack": "^1.13.2",
"webpack-stream": "^3.2.0",
"webpack-uglify-js-plugin": "^1.1.9"
},
"engines": {
"node": ">=0.10.0"
},
"private": true,
"planche": {
"src": "src",
"dist": {
"planche-wordpress": "dist/planche-wordpress",
"planche-desktop": "dist/planche-desktop",
"planche-chrome": "dist/planche-chrome",
"planche": "dist/planche"
},
"main": {
"planche-wordpress": "planche-wordpress.php",
"planche-desktop": "main.js",
"planche-chrome": "main.js",
"planche": "index.html"
},
"theme": "gray",
"tunneling": {
"host": "127.0.0.1",
"port": "8888"
}
}
}