forked from webcatalog/webcatalog-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·86 lines (86 loc) · 2.97 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
{
"name": "WebCatalog",
"description": "Run Web Apps like Real Apps",
"version": "13.10.0",
"templateVersion": "3.10.0",
"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 --ext js && yarn template:lint",
"lint:fix": "eslint ./public ./src ./dist.js --ext js --fix && yarn template:lint:fix",
"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",
"template:lint": "cd template && yarn lint",
"template:lint:fix": "cd template && yarn lint:fix",
"template:install": "cd template && yarn",
"template:electron-dev": "cd template && yarn electron-dev",
"template:prepare-dist": "cd template && yarn && yarn build && yarn install --production && cd .. && tar --exclude=template/public -zcvf template.tar.gz template",
"dist": "yarn template:prepare-dist && yarn build && cross-env NODE_ENV=production node dist.js",
"catalog:install": "cd catalog && yarn install && pip3 install --user -r requirements.txt",
"catalog:test": "cd catalog && yarn test",
"catalog:pack": "cd catalog && yarn build:pack",
"catalog:publish": "cd catalog && yarn build:publish"
},
"repository": "https://github.com/quanglam2807/webcatalog",
"author": {
"name": "Quang Lam",
"email": "[email protected]"
},
"dependencies": {
"blueimp-md5": "2.10.0",
"decompress": "4.2.0",
"download": "7.1.0",
"electron-is-dev": "1.1.0",
"electron-packager": "13.1.1",
"electron-settings": "3.2.0",
"electron-updater": "4.0.6",
"electron-window-state": "5.0.3",
"follow-redirects": "1.7.0",
"fs-extra": "8.0.1",
"icon-gen": "2.0.0",
"is-url": "1.2.4",
"jimp": "0.6.4",
"sudo-prompt": "8.2.5",
"tmp": "0.1.0",
"yargs-parser": "13.1.0"
},
"devDependencies": {
"@material-ui/core": "3.9.3",
"@material-ui/icons": "3.0.2",
"algoliasearch": "3.33.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"classnames": "2.2.6",
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"electron": "5.0.2",
"electron-builder": "20.41.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "6.0.1",
"react-scripts": "3.0.1",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"request": "2.88.0",
"semver": "6.1.1",
"typeface-roboto": "0.0.54",
"wait-on": "3.2.0"
},
"homepage": "./",
"private": true,
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}