forked from Jigsaw-Code/outline-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.75 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
94
{
"name": "outline-client",
"productName": "Outline",
"scripts": {
"clean": "rm -rf build www node_modules platforms/* plugins/*",
"postinstall": "bower install || echo no bower needed",
"do": "bash ./scripts/do_action.sh"
},
"dependencies": {
"@sentry/electron": "^0.17.1",
"ShadowsocksConfig": "Jigsaw-Code/outline-shadowsocksconfig#^v0.0.9",
"auto-launch": "^5.0.5",
"cordova-custom-config": "^5.1.0",
"cordova-plugin-clipboard": "github:Jigsaw-Code/outline-cordova-plugin-clipboard#v2.0.0",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-outline": "file:cordova-plugin-outline",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.2.3",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-webintent": "github:cordova-misc/cordova-webintent#v2.0.0",
"electron-promise-ipc": "^1.0.0",
"electron-updater": "3.2.3",
"fs-extra": "^7.0.0",
"raven": "^2.2.1",
"raven-js": "^3.20.1",
"socks": "^1.1.10",
"sudo-prompt": "^8.2.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/auto-launch": "^5.0.0",
"@types/cordova-plugin-device": "^0.0.3",
"@types/jasmine": "^2.8.6",
"@types/node": "^8.0.53",
"@types/polymer": "^1.2.6",
"@types/raven": "^2.1.2",
"@types/semver": "^5.5.0",
"@types/uuid": "^3.4.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"bower": "^1.8.4",
"browserify": "^14.4.0",
"clang-format": "^1.0.55",
"cordova": "~9.0.0",
"cordova-android": "~8.0.0",
"cordova-browser": "~6.0.0",
"cordova-ios": "~5.0.1",
"cordova-osx": "~5.0.0",
"electron": "2.0.16",
"electron-builder": "20.34.0",
"electron-icon-maker": "^0.0.4",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-if": "^2.0.2",
"gulp-posthtml": "^3.0.4",
"gulp-replace": "^0.6.1",
"gulp-util": "^3.0.8",
"husky": "^1.3.1",
"jasmine": "^3.0.0",
"polymer-build": "^2.1.1",
"postcss-rtl": "^1.2.3",
"posthtml-postcss": "^0.2.6",
"tslint": "^5.12.0",
"typescript": "~3.1.0",
"vinyl-source-stream": "^2.0.0",
"xml2js": "^0.4.17"
},
"main": "build/electron/electron/index.js",
"husky": {
"hooks": {
"pre-commit": "yarn tslint --fix 'src/**/*.ts' && yarn git-clang-format"
}
},
"cordova": {
"plugins": {
"cordova-custom-config": {},
"cordova-plugin-device": {},
"cordova-plugin-outline": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-clipboard": {},
"cordova-webintent": {}
},
"platforms": [
"browser",
"ios",
"osx",
"android"
]
}
}