-
Notifications
You must be signed in to change notification settings - Fork 456
/
package.json
103 lines (103 loc) · 3.42 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
{
"name": "cerebro",
"productName": "cerebro",
"version": "0.11.0",
"description": "Cerebro is an open-source launcher to improve your productivity and efficiency",
"main": "./app/main.js",
"scripts": {
"test": "cross-env NODE_ENV=test CEREBRO_DATA_PATH=userdata 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",
"email": "[email protected]",
"url": "https://github.com/cerebroapp"
},
"contributors": [
"Alexandr Subbotin <[email protected]> (https://github.com/KELiON)",
"Gustavo Pereira <[email protected] (https://github.com/oguhpereira)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebroapp/cerebro/issues"
},
"keywords": [
"cerebro",
"cerebroapp",
"launcher",
"electron"
],
"homepage": "https://cerebroapp.com",
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "7.18.9",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"autoprefixer": "10.4.16",
"babel-loader": "8.2.5",
"commitizen": "4.3.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.7.3",
"cz-conventional-changelog": "3.3.0",
"electron": "20.2.0",
"electron-builder": "23.6.0",
"eslint": "8.34.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"express": "4.18.2",
"husky": "8.0.3",
"jest": "27.5.1",
"lodash-webpack-plugin": "0.11.6",
"mini-css-extract-plugin": "2.7.6",
"npm-run-all": "4.1.5",
"postcss": "8.4.32",
"postcss-loader": "7.0.2",
"postcss-nested": "6.0.1",
"style-loader": "3.3.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"url-loader": "4.1.1",
"webpack": "5.75.0",
"webpack-cli": "4.10.0",
"webpack-dev-middleware": "5.3.3",
"webpack-hot-middleware": "2.25.4",
"webpack-visualizer-plugin": "0.1.11"
},
"dependencies": {},
"devEngines": {
"node": ">=16.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}