-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
{
"private": true,
"license": "MIT",
"workspaces": [
"backend",
"frontend",
"shared"
],
"scripts": {
"backend": "yarn workspace backend",
"frontend": "yarn workspace frontend",
"check-all": "run-s lint:fix format \"backend build:tsc\" \"frontend build:tsc\"",
"format": "run-s \"format:no-write --write --list-different\"",
"format:check": "run-s \"format:no-write --check\"",
"format:no-write": "prettier \"**/*.{cjs,js,ts,tsx,json,css,scss,graphql,md,yaml,yml}\"",
"lint": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives --max-warnings=0 .",
"lint:fix": "run-s \"lint --fix --cache\"",
"postinstall": "yarn chakra typegen frontend/src/shared/design-system/theme/theme.ts",
"prepare": "husky install",
"test:e2e": "playwright test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"date-fns": "^3.6.0",
"dotenv-flow": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-simple-import-sort": "^12.1.1",
"graphql": "^16.9.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"lodash": "4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"typescript": "~5.5.4"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca",
"dependencies": {
"@playwright/test": "^1.48.1",
"rimraf": "^6.0.1"
},
"resolutions": {
"**/@types/express": "^4.17.0"
}
}