-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
150 lines (150 loc) · 5.48 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "wick-editor",
"version": "1.19.3",
"author": "Wicklets LLC",
"private": true,
"homepage": "./",
"main": "./public/electron.js",
"repository": {
"type": "git",
"url": "https://github.com/Wicklets/wick-editor.git"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.7.0",
"ace-builds": "^1.4.12",
"audiobuffer-to-wav": "^1.0.0",
"base64-arraybuffer": "^0.2.0",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"console-feed": "^3.1.10",
"electron-is-dev": "^1.2.0",
"electron-updater": "^4.2.5",
"file-saver": "^2.0.0",
"localforage": "^1.7.3",
"node-sass": "^4.9.4",
"query-string": "^6.9.0",
"rc-slider": "^8.6.3",
"react": "^16.13.1",
"react-ace": "^6.3.2",
"react-aria-menubutton": "^6.0.1",
"react-color": "^2.14.1",
"react-device-detect": "^1.15.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-dropdown": "^1.6.4",
"react-dropzone": "^8.0.3",
"react-hotkeys": "^2.0.0",
"react-measure": "^2.3.0",
"react-modal": "^3.8.1",
"react-numeric-input": "^2.2.3",
"react-popover": "^0.5.10",
"react-reflex": "^3.0.6",
"react-resize-detector": "^3.1.3",
"react-rnd": "^10.2.3",
"react-scripts": "2.0.5",
"react-select": "^2.1.0",
"react-sizeme": "^2.6.12",
"react-spinners": "^0.9.0",
"react-tabs": "^3.0.0",
"react-tiny-popover": "^5.1.0",
"react-toastify": "^4.5.2",
"react-tooltip": "^4.2.7",
"reactstrap": "^6.5.0",
"tinycolor2": "^1.4.1",
"underscore": "^1.9.1",
"url-parse": "^1.4.7"
},
"build": {
"appId": "com.wicklets.wickEditor",
"productName": "Wick Editor",
"icon": "public/icon.icns",
"afterSign": "electron-builder-notarize",
"copyright": "© 2016-2020 Wicklets LLC",
"files": [
"./build/**/*",
"./public/electron.js"
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"license": "build/license_en.txt"
},
"mac": {
"target": [
"pkg",
"dmg"
],
"category": "public.app-category.entertainment",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist"
},
"dmg": {
"icon": false
},
"pkg": {
"license": "./build/license_en.txt"
},
"linux": {
"target": [
"AppImage"
],
"category": "Entertainment"
},
"win": {
"icon": "build/icon.png"
}
},
"scripts": {
"eject": "react-scripts eject",
"dist": "electron-builder",
"start": "react-scripts start",
"build": "react-scripts build && cp CNAME_editor ./build/CNAME;",
"build-engine": "cd engine; mkdir dist/; gulp; cp -a dist/. ../public/corelibs/wick-engine/",
"build-engine-windows": "cd engine & mkdir dist 2>nul & gulp & xcopy /EY dist\\. ..\\public\\corelibs\\wick-engine\\",
"test": "react-scripts test",
"engine-tests": "cd engine; python -m SimpleHTTPServer 9999",
"predeploy": "npm run build",
"editor-deploy": "npm run build; rm -r ../wick-site/public/editor; mkdir ../wick-site/public/editor; cp -r build/* ../wick-site/public/editor; cd ../wick-site/public/editor; rm CNAME; echo 'wickeditor.com/editor/' > CNAME; git add .; git commit -m 'update release build'; git push --force;",
"test-deploy": "npm run build; rm -r ../wick-site/public/test; mkdir ../wick-site/public/test; cp -r build/* ../wick-site/public/test; cd ../wick-site/public/test; rm CNAME; echo 'wickeditor.com/test/' > CNAME; git add .; git commit -m 'update prerelease build'; git push --force;",
"prerelease-deploy": "npm run build; cp -r build/* ../wick-editor-prerelease/; cd ../wick-editor-prerelease; rm CNAME; echo 'test.wickeditor.com' > CNAME; git add .; git commit -m 'update prerelease build'; git push --force;",
"deploy": "gh-pages -d build",
"electron": "electron .",
"electron-dev-macos": "ELECTRON_START_URL=http://localhost:3000 electron .",
"electron-dev-windows": "set ELECTRON_START_URL=http://localhost:3000 && electron .",
"postinstall": "electron-builder install-app-deps",
"build-packages": "electron-builder --mac --windows --linux",
"package-mac": "npm run build; electron-builder --mac",
"package-windows": "npm run build; electron-builder --windows",
"package-linux": "npm run build; electron-builder --linux",
"phonegap-deploy": "npm run build; cd ../wick-editor-phonegap; npm run prepare-dir; cd ../wick-editor; cp -r build/* ../wick-editor-phonegap/www; cd ../wick-editor-phonegap; npm run prepare-app; git add .; git commit -m 'update phonegap build'; git push --force;",
"phonegap-predeploy": "npm run build; cd ../wick-editor-phonegap; npm run prepare-dir; cd ../wick-editor; cp -r build/* ../wick-editor-phonegap/www; cd ../wick-editor-phonegap; npm run prepare-app;"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"dotenv": "^8.2.0",
"electron": "^7.2.4",
"electron-builder": "^22.4.1",
"electron-builder-notarize": "^1.1.2",
"electron-notarize": "^0.3.0",
"electron-osx-sign": "^0.4.15",
"electron-packager": "^14.2.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gh-pages": "^2.0.1"
}
}