-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 KB
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
{
"name": "activity-tracker",
"version": "1.0.0",
"description": "<h1 align=\"center\">Welcome to the Digital Life Tracker 👋</h1>",
"main": "index.js",
"bin": "main.js",
"scripts": {
"dev": "pnpm dev --prefix packages/desktop",
"test": "pnpm -r test --filter=!./packages/vscode-extension",
"server": "cd packages/server/ && pnpm run server",
"tracker": "cd packages/desktop/ && pnpm run tracker",
"ui:dev": "pnpm vite:dev --prefix packages/desktop",
"ui": "pnpm run ui:dev",
"build": "pnpm dist --prefix packages/desktop",
"lint": "eslint --ext js,jsx .",
"format": "prettier . --write",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenLake/Activity-Tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OpenLake/Activity-Tracker/issues"
},
"homepage": "https://github.com/OpenLake/Activity-Tracker#readme",
"devDependencies": {
"eslint": "^7.31.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.0",
"prettier": "^2.3.1"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"pkg": {
"assets": [
"./node_modules/**/*.node",
"./packages/**/.babel/*.env",
"./packages/server/.babel/static/",
"./packages/desktop/node_modules/active-win/main"
],
"targets": [
"node14-win-x64",
"node14-linux-x64",
"node14-macos"
],
"outputPath": "build"
}
}