-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.7 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
54
55
56
57
{
"name": "sami-website",
"version": "1.5.0",
"license": "see license.md",
"workspaces": [
"backend",
"ci",
"frontend",
"scripts",
"shared"
],
"scripts": {
"build": "yarn scripts cli build",
"format": "yarn format:code && yarn format:style",
"format:code": "eslint . --ext .js,.jsx,.ts,.tsx --color --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 . --ext .js,.jsx,.ts,.tsx --color",
"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": {
"@release-it/conventional-changelog": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-sort-class-members": "^1.15.2",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,tsx,ts}": [
"prettier --write"
]
},
"packageManager": "yarn@4.1.0",
"engines": {
"node": ">=16.x <=20.x"
}
}