-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "watching-you-repo",
"version": "0.0.1",
"private": true,
"license": "ISC",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"build": "yarn workspaces foreach run build",
"test": "yarn workspace tests-watching-you run test",
"format": "prettier --write '**/**.{ts,tsx,js,cjs,mjs}'",
"tsc": "tsc --noEmit",
"lint": "eslint '**/*.{ts,tsx,js,cjs,mjs}' --max-warnings=0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"eslint": "^8.26.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{ts,tsx,js,cjs,mjs}": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"trim": "0.0.3",
"loader-utils": "2.0.4",
"trim-newlines": "3.0.1",
"glob-parent": "5.1.2"
},
"repository": "https://github.com/jj811208/watching-you",
"homepage": "https://github.com/jj811208/watching-you",
"bugs": "https://github.com/jj811208/watching-you/issues",
"author": "Ryan Chu <[email protected]> (https://github.com/jj811208)",
"packageManager": "[email protected]"
}