-
Notifications
You must be signed in to change notification settings - Fork 456
/
Copy pathpackage.json
119 lines (119 loc) · 3.86 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
{
"name": "cerebro",
"productName": "cerebro",
"version": "0.8.0",
"description": "Cerebro is an open-source launcher to improve your productivity and efficiency",
"main": "main.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test-watch": "jest -- --watch",
"lint": "eslint app/background app/lib app/main app/plugins *.js",
"hot-server": "node -r @babel/register server.js",
"build-main": "webpack --mode production --config webpack.config.electron.js",
"build-main-dev": "webpack --mode development --config webpack.config.electron.js",
"build-renderer": "webpack --config webpack.config.production.js",
"bundle-analyze": "cross-env ANALYZE=true node ./node_modules/webpack/bin/webpack --config webpack.config.production.js && open ./app/dist/stats.html",
"build": "run-p build-main build-renderer",
"start": "cross-env NODE_ENV=production electron ./app",
"start-hot": "yarn build-main-dev && cross-env NODE_ENV=development electron ./app",
"release": "build -mwl --draft",
"dev": "run-p hot-server start-hot",
"postinstall": "electron-builder install-app-deps",
"package": "yarn build && npx electron-builder",
"prepare": "husky install",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebroapp/cerebro.git"
},
"author": {
"name": "CerebroApp Organization",
"url": "https://github.com/cerebroapp"
},
"contributors": [
"Alexandr Subbotin <[email protected]> (https://github.com/KELiON)",
"Gustavo Pereira <[email protected] (https://github.com/oguhpereira)",
"David Jiménez <[email protected]> (https://dubis.dev)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebroapp/cerebro/issues"
},
"keywords": [
"cerebro",
"cerebroapp",
"launcher",
"electron"
],
"homepage": "https://cerebroapp.com",
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/eslint-parser": "7.18.9",
"@babel/preset-env": "7.19.1",
"@babel/preset-react": "7.18.6",
"@babel/register": "7.18.9",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"autoprefixer": "10.4.12",
"babel-loader": "8.2.5",
"commitizen": "4.2.5",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"cz-conventional-changelog": "3.3.0",
"electron": "20.2.0",
"electron-builder": "23.3.3",
"eslint": "8.23.1",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"express": "4.18.1",
"husky": "8.0.1",
"jest": "27.5.1",
"lodash-webpack-plugin": "0.11.6",
"mini-css-extract-plugin": "2.6.1",
"npm-run-all": "4.1.5",
"postcss": "8.4.16",
"postcss-loader": "7.0.1",
"postcss-nested": "5.0.6",
"style-loader": "3.3.1",
"url-loader": "4.1.1",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-middleware": "5.3.3",
"webpack-hot-middleware": "2.25.2",
"webpack-visualizer-plugin": "0.1.11"
},
"dependencies": {
"@cerebroapp/cerebro-ui": "2.0.0-alpha.2",
"@electron/remote": "2.0.8",
"appdata-path": "1.0.0",
"auto-launch": "5.0.5",
"cerebro-tools": "0.1.8",
"escape-string-regexp": "5.0.0",
"lodash": "4.17.21",
"normalize.css": "8.0.1",
"prop-types": "15.8.1",
"react": "16.14.0",
"react-addons-shallow-compare": "15.6.3",
"react-dom": "16.14.0",
"react-markdown": "8.0.3",
"react-redux": "5.1.2",
"react-virtualized": "9.22.3",
"redux": "4.2.0",
"redux-thunk": "2.4.1",
"tar-fs": "2.1.1"
},
"devEngines": {
"node": ">=16.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}