-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "Activity-tracker",
"version": "1.0.0",
"description": "Repository containing api and client for activity tracker app",
"repository": "https://github.com/sjwilczynski/Activity-tracker.git",
"author": "sjwilczynski <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.20.0"
},
"scripts": {
"depcheck": "node scripts/depcheck.js",
"lint": "eslint ./**/*.{ts,tsx,js} --max-warnings=0",
"clean": "rm -rf node_modules client/node_modules api/node_modules",
"prepare": "husky install",
"pre-commit": "lint-staged --allow-empty"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"bundlewatch": "0.3.3",
"depcheck": "1.4.3",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.8.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"source-map-explorer": "2.5.2",
"typescript": "5.0.2"
},
"bundlewatch": {
"files": [
{
"path": "client/build/assets/*.js",
"maxSize": "500kB"
}
]
},
"lint-staged": {
"./**/*.{ts,tsx,js}": [
"eslint --max-warnings=0"
],
"*": [
"prettier --write"
]
},
"workspaces": [
"client",
"api"
]
}