-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.68 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.68 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
{
"scripts": {
"check-format": "run-p check:*",
"check:prettier": "prettier --check \"./client/**/*.{js,jsx,json,css,scss,md}\" \"./server/**/*.{js,jsx,json,css,scss,md}\" \"*.{js,jsx,json,css,scss,md}\" \"!./server/migrations/**\"",
"check:lint-client": "cd client && eslint --config eslint.config.mjs src",
"check:lint-server": "echo 'Server linting temporarily disabled'",
"format": "run-s format:*",
"format:prettier": "prettier --write \"./client/**/*.{js,jsx,json,css,scss,md}\" \"./server/**/*.{js,jsx,json,css,scss,md}\" \"*.{js,jsx,json,css,scss,md}\" \"!./server/migrations/**\"",
"format:lint-client": "cd client && eslint --config eslint.config.mjs src --fix",
"format:lint-server": "echo 'Server linting temporarily disabled'",
"update-all": "npm i && run-p update:*",
"update-apps": "run-p 'update:client' 'update:server'",
"update:client": "npm i --prefix client",
"update:server": "npm i --prefix server",
"prepare": "husky",
"cypress": "cypress open",
"cypress-run": "cypress run --spec",
"cypress-e2e": "cypress run --headless"
},
"engines": {
"node": ">=24.14.1",
"npm": ">=10.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"cypress": "14.5.3",
"cypress-dotenv": "3.0.1",
"dotenv": "17.2.1",
"eslint": "^9.18.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"prettier": "3.6.2",
"pretty-quick": "4.2.2"
},
"dependencies": {
"uuidv4": "6.2.13"
},
"name": "hcap",
"lint-staged": {
"client/src/**/*.{js,jsx}": "eslint --config ./client/eslint.config.mjs --fix"
}
}