-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "hotsak-frontend",
"version": "0.1.0",
"type": "module",
"author": "Team DigiHoT",
"private": true,
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2"
},
"scripts": {
"build:client": "npm --prefix client run build",
"build:server": "npm --prefix server run build",
"build": "npm-run-all build:*",
"test:client": "npm --prefix client run test:ci",
"test": "npm-run-all test:client",
"dev": "npm --prefix client run dev",
"cypress:open": "npm --prefix client run cypress:open",
"cypress:run": "npm --prefix client run cypress:run",
"prepare": "husky || true",
"lint:client": "npm --prefix client run lint",
"lint:server": "npm --prefix server run lint",
"lint": "npm-run-all lint:client lint:server"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"msw": {
"workerDirectory": "client/public"
}
}