forked from Wicklets/wick-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.56 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
{
"name": "wick-editor-react",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"audiobuffer-to-wav": "^1.0.0",
"base64-arraybuffer": "^0.2.0",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"file-saver": "^2.0.0",
"gh-pages": "^2.0.1",
"localforage": "^1.7.3",
"node-sass": "^4.9.4",
"rc-slider": "^8.6.3",
"react": "^16.5.2",
"react-ace": "^6.2.0",
"react-aria-menubutton": "^6.0.1",
"react-color": "^2.14.1",
"react-dnd": "^6.0.0",
"react-dnd-html5-backend": "^6.0.0",
"react-dom": "^16.5.2",
"react-dropdown": "^1.6.4",
"react-dropzone": "^8.0.3",
"react-ga": "^2.5.6",
"react-hotkeys": "^2.0.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": "^9.1.1",
"react-scripts": "2.0.5",
"react-select": "^2.1.0",
"react-tabs": "^3.0.0",
"react-toastify": "^4.5.2",
"react-tooltip": "^3.9.0",
"reactstrap": "^6.5.0",
"underscore": "^1.9.1"
},
"main": "src/electron-starter.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && cp CNAME_editor ./build/CNAME",
"build-engine": "cd engine; mkdir dist/; gulp; cp dist/wickengine.js ../public/corelibs/wick-engine/wickengine.js; rm dist/wickengine.js;",
"build-electron-macos": "electron-packager . 'Wick Editor' --ignore=node_modules --icon=public/icon.icns--platform=darwin --out build-electron --overwrite",
"build-electron-windows": "electron-packager . wickwindows --ignore=node_modules --icon=public/icon.ico --platform=win32 --out build-electron --overwrite",
"build-ios": "cp -r build/* build-ios/WebViewExample/local_html",
"test": "react-scripts test",
"predeploy": "npm run build",
"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",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-dev-macos": "ELECTRON_START_URL=http://localhost:3000 electron .",
"electron-dev-windows": "set ELECTRON_START_URL=http://localhost:3000 && electron ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"electron": "^6.0.10",
"electron-packager": "^14.0.6"
}
}