-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
36 lines (36 loc) · 977 Bytes
/
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
{
"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 --filter desktop dev",
"test": "pnpm -r --filter=!./packages/vscode-extension test",
"build": "pnpm --filter desktop dist",
"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"
}
}