-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "sami-website",
"version": "1.8.0",
"license": "see license.md",
"workspaces": [
"backend",
"frontend",
"scripts"
],
"scripts": {
"build": "yarn scripts cli build",
"format": "yarn format:code && yarn format:style",
"format:code": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"format:style": "prettier --write \"**/*.{md,json,js,tsx,ts}\"",
"generate": "yarn workspace frontend generate && yarn pretty-quick",
"lint": "yarn lint:code && yarn lint:style",
"lint:code": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:spell:TODO": "npx cspell \"**/*.md\" --config ./cspell.json",
"lint:style": "prettier --check \"**/*.{md,json,js,tsx,ts}\"",
"scripts": "yarn workspace scripts start",
"start": "yarn scripts cli start",
"start:docker": "docker compose -p sami-website -f docker/docker-compose.yml up"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@release-it/conventional-changelog": "^5.0.0",
"eslint": "9.17.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "3.4.2",
"pretty-quick": "^3.1.3",
"typescript": "5.3.3",
"typescript-eslint": "^8.53.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,tsx,ts}": [
"prettier --write"
]
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=20 <=24"
}
}