forked from webcatalog/webcatalog-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·81 lines (81 loc) · 2.65 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
{
"name": "webcatalog",
"version": "12.8.1",
"description": "WebCatalog helps you turn any website into desktop app with just one click.",
"main": "public/electron.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint ./public ./src ./dist.js ./tests --ext ./directory/test ./directory/script ./directory/lib js",
"start": "react-scripts start",
"electron-dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && cross-env API_URL=http://localhost:3000/api electron .\"",
"dist-dev": "yarn build && node dist.js",
"dist": "yarn build && cross-env NODE_ENV=production node dist.js",
"test": "mocha ./tests",
"directory:install": "cd directory && yarn install && pip3 install --user -r requirements.txt",
"directory:test": "cd directory && yarn test",
"directory:pack": "cd directory && yarn build:pack",
"directory:publish": "cd directory && yarn build:publish"
},
"repository": "https://github.com/webcatalog/webcatalog",
"author": {
"name": "Quang Lam",
"email": "[email protected]"
},
"license": "MPL-2.0",
"dependencies": {
"command-exists": "1.2.7",
"electron-is-dev": "0.3.0",
"electron-settings": "3.2.0",
"electron-updater": "3.1.1",
"electron-window-state": "4.1.1",
"file-type": "9.0.0",
"follow-redirects": "1.5.5",
"fs-extra": "7.0.0",
"icon-gen": "1.2.1",
"is-url": "1.2.4",
"jimp": "0.2.28",
"read-chunk": "2.1.0",
"tmp": "0.0.33",
"windows-shortcuts": "0.1.6",
"yargs-parser": "10.1.0"
},
"devDependencies": {
"@material-ui/core": "1.5.0",
"@material-ui/icons": "2.0.2",
"algoliasearch": "3.30.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"blueimp-md5": "2.10.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"chalk": "2.4.1",
"classnames": "2.2.6",
"concurrently": "3.6.1",
"cross-env": "5.2.0",
"electron": "2.0.9",
"electron-builder": "20.28.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"js-yaml": "3.12.0",
"mocha": "5.2.0",
"prop-types": "15.6.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-redux": "5.0.7",
"react-scripts": "1.1.4",
"redux": "3.7.2",
"redux-thunk": "2.3.0",
"replace-in-file": "3.4.2",
"request": "2.88.0",
"spectron": "3.8.0",
"typeface-roboto": "0.0.54",
"wait-on": "2.1.0"
},
"homepage": "./",
"private": true
}