-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
112 lines (112 loc) · 3.7 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
{
"name": "streaker",
"private": true,
"description": "GitHub contribution streak & stat tracking menu bar app",
"version": "1.6.1",
"homepage": "https://github.com/jamieweavis/streaker#readme",
"license": "MIT",
"main": "build/main.js",
"author": "Jamie Weavis",
"repository": {
"type": "git",
"url": "git+https://github.com/jamieweavis/streaker.git"
},
"bugs": {
"url": "https://github.com/jamieweavis/streaker/issues"
},
"scripts": {
"start": "npm run build && electron build/main.js",
"start:dev": "cross-env START_MAIN=1 npm run start:dev:renderer",
"start:dev:main": "webpack --config config/webpack/webpack.main.config.js && electron build/main.js",
"start:dev:renderer": "webpack-dev-server --config config/webpack/webpack.renderer.dev.config.js",
"build": "npm run build:main && npm run build:renderer",
"build:main": "cross-env NODE_ENV=production webpack --config config/webpack/webpack.main.prod.config.js",
"build:renderer": "cross-env NODE_ENV=production webpack --config config/webpack/webpack.renderer.prod.config.js",
"test": "echo \"No tests yet.\" && exit 0",
"clean": "rimraf build && rimraf dist",
"lint": "rome check src",
"lint:fix": "npm run lint -- --apply-suggested",
"format": "rome format src",
"format:write": "npm run format -- --write",
"predist": "npm run build",
"dist": "electron-builder -mw -c.mac.identity=null",
"pack": "electron-builder --dir -c.mac.identity=null",
"prepare": "husky install"
},
"dependencies": {
"@primer/components": "23.2.1",
"auto-launch": "5.0.5",
"contribution": "5.2.0",
"cron": "1.8.2",
"electron-store": "7.0.3",
"formik": "2.2.9",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-helmet": "6.1.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@hot-loader/react-dom": "17.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.1",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"@types/auto-launch": "5.0.2",
"@types/cron": "1.7.3",
"@types/jest": "26.0.24",
"@types/react-dom": "17.0.11",
"@types/react-helmet": "6.1.5",
"@types/react": "17.0.38",
"@types/styled-components": "5.1.19",
"@types/webpack-env": "1.16.3",
"babel-loader": "8.2.3",
"commitizen": "4.3.0",
"commitlint": "12.1.4",
"copy-webpack-plugin": "5.1.2",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"electron-builder": "22.14.5",
"electron": "^11.0.0",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "4.1.6",
"html-webpack-plugin": "4.5.2",
"husky": "8.0.3",
"lint-staged": "10.5.4",
"react-hot-loader": "4.13.0",
"rimraf": "3.0.2",
"rome": "^11.0.0",
"semantic-release": "17.4.7",
"source-map-loader": "0.2.4",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.4",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3",
"webpack-merge": "4.2.2"
},
"keywords": [
"contribution",
"contribution-graph",
"electron",
"electron-app",
"github",
"macos",
"menubar",
"streak"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}