-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
115 lines (115 loc) · 3.3 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
{
"name": "wakatime-desktop",
"version": "0.0.1",
"author": "WakaTime",
"license": "BSD-3-Clause",
"homepage": "https://github.com/wakatime/wakatime-desktop",
"description": "The WakaTime desktop app.",
"main": "dist/app.js",
"scripts": {
"dev": "npm run build && npm run watch",
"start": "npm run build && electron dist/app.js",
"cache:clean": "rimraf node_modules/.cache",
"eslint": "eslint --ext ts --ext tsx .",
"eslint:fix": "eslint --ext ts --ext tsx --fix .",
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rimraf dist out",
"build:webpack": "webpack --mode production",
"generate:imgPaths": "ts-node scripts/createImgConstFiles.ts && npm run eslint:fix",
"watch": "nf start",
"watch:webpack": "webpack --mode development --watch",
"watch:webpack-server": "webpack-dev-server",
"upgrade": "yarn upgrade --latest",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wakatime/wakatime-desktop.git"
},
"bugs": {
"url": "https://github.com/wakatime/wakatime-desktop/issues"
},
"keywords": [
"quantified self",
"time tracking"
],
"devDependencies": {
"@types/chai": "4.x",
"@types/chai-as-promised": "7.x",
"@types/electron": "1.x",
"@types/electron-devtools-installer": "2.x",
"@types/lodash": "4.x",
"@types/mocha": "8.2.0",
"@types/node": "14.14.11",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-redux": "7.x",
"@types/redux": "3.x",
"@types/sinon": "9.x",
"@types/unzipper": "0.x",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"cache-loader": "4.x",
"chai": "4.x",
"chai-as-promised": "7.x",
"eslint": "7.x",
"eslint-config-airbnb": "18.x",
"eslint-config-prettier": "7.0.0",
"eslint-import-resolver-typescript": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "3.x",
"eslint-plugin-react": "7.x",
"file-loader": "6.x",
"husky": "4.x",
"lint-staged": "10.x",
"mocha": "8.2.1",
"ncu": "0.x",
"nodemon": "2.x",
"prettier": "2.x",
"redux-devtools-cli": "^1.0.0-4",
"sinon": "9.x",
"ts-node": "9.1.1",
"typescript": "4.1.2",
"typescript-eslint-parser": "22.x",
"uglifyjs-webpack-plugin": "2.x",
"webpack-cli": "4.2.0",
"webpack-dev-server": "3.x"
},
"dependencies": {
"aphrodite": "2.x",
"axios": "^0.21.0",
"electron": "22.3.25",
"electron-devtools-installer": "3.x",
"find-in-files": "0.x",
"foreman": "3.x",
"html-webpack-plugin": "4.x",
"lodash": "^4.17.20",
"moment-timezone": "^0.5.31",
"plist": "3.x",
"prop-types": "15.x",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.x",
"react-with-styles": "4.x",
"react-with-styles-interface-aphrodite": "6.x",
"readdirp": "3.x",
"redux": "4.x",
"registry-js": "1.x",
"remote-redux-devtools": "0.x",
"request": "2.x",
"rimraf": "3.x",
"ts-loader": "8.0.11",
"unzipper": "0.x",
"webpack": "5.76.0",
"winreg": "1.x",
"yarn": "1.x"
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
}
}