forked from Jigsaw-Code/outline-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.52 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
95
96
97
98
99
100
101
102
103
104
105
106
{
"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"
},
"comments": {
"sentry": "@sentry/electron depends on @sentry/browser; use @sentry/browser as a transitive dependency to avoid version mismatches that make the build fail. See: https://github.com/getsentry/sentry-javascript/issues/1853",
"[email protected]": "Version-controlled platform config files at apple/xcode/osx/Outline/config.xml, apple/xcode/osx/osx.json, and apple/xcode/osx/www/cordova_plugins.js as a workaround for https://github.com/apache/cordova-osx/issues/106. Delete these files when the issue is fixed."
},
"dependencies": {
"@sentry/electron": "1.2.1",
"ShadowsocksConfig": "Jigsaw-Code/outline-shadowsocksconfig#^v0.0.9",
"auto-launch": "^5.0.5",
"cordova-custom-config": "^5.1.0",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-splashscreen": "^6.0.0",
"cordova-plugin-statusbar": "^2.2.3",
"cordova-plugin-whitelist": "^1.3.3",
"electron-promise-ipc": "^1.0.0",
"electron-updater": "^4.1.2",
"fs-extra": "^7.0.0",
"socks": "^1.1.10",
"sudo-prompt": "^8.2.0",
"uuidv4": "^4.0.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/semver": "^5.5.0",
"@types/uuidv4": "^2.0.0",
"at-least-node": "^1.0.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": "~10.0.0",
"cordova-android": "~9.0.0",
"cordova-browser": "~6.0.0",
"cordova-ios": "~6.1.0",
"cordova-osx": "~6.0.0",
"cordova-plugin-clipboard": "github:Jigsaw-Code/outline-cordova-plugin-clipboard#v2.0.0",
"cordova-plugin-outline": "file:cordova-plugin-outline",
"cordova-webintent": "github:cordova-misc/cordova-webintent#v2.0.0",
"electron": "^7.0.0",
"electron-builder": "^21.2.0",
"electron-icon-maker": "^0.0.4",
"fancy-log": "^1.3.3",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-if": "^2.0.2",
"gulp-posthtml": "^3.0.4",
"gulp-replace": "^0.6.1",
"husky": "^1.3.1",
"jasmine": "^3.0.0",
"minimist": "^1.2.5",
"polymer-build": "^2.1.1",
"postcss-rtl": "^1.2.3",
"posthtml-postcss": "^0.2.6",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"simple-plist": "^1.1.0",
"tslint": "^5.12.0",
"typescript": "^3.6.4",
"underscore": "^1.10.2",
"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 && yarn pretty-quick --staged --pattern '**/*.html'"
}
},
"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",
"android",
"ios",
"osx"
]
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "es5",
"printWidth": 120
}
}