-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "fleethub",
"private": true,
"license": "UNLICENSED",
"author": "madono (https://github.com/MadonoHaru) <madonoharu@gmail.com>",
"workspaces": [
"packages/*",
"crates/fleethub-core"
],
"scripts": {
"build": "yarn build:site",
"build:admin": "yarn workspace @fh/admin build",
"build:core": "bash scripts/build-core.sh",
"build:kcs": "yarn workspace kcs build",
"build:site": "yarn workspace @fh/site build",
"build:utils": "yarn workspace @fh/utils build",
"dev": "yarn workspace @fh/site dev",
"dispatch": "yarn run tsx scripts/dispatch",
"dispatch-locally": "act -r workflow_dispatch --secret-file .env -e payload.json",
"postinstall": "husky install & yarn setup",
"lint": "eslint --cache packages && yarn tsc --incremental --noEmit",
"setup": "(yarn build:utils & yarn build:kcs) && yarn build:admin",
"site": "yarn workspace @fh/site",
"start": "yarn workspace @fh/site start",
"test": "jest",
"update:locales": "yarn run tsx scripts/updateLocales",
"update:maps": "yarn run tsx --env-file=.env scripts/updateByKcnav",
"update:storage": "yarn run tsx --env-file=.env scripts/updateStorage",
"update:types": "yarn run tsx --env-file=.env scripts/updateTypes",
"redeploy": "yarn run tsx --env-file=.env scripts/redeploy",
"utils": "yarn workspace @fh/utils"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": "prettier --cache --write",
"*.{js,jsx,ts,tsx}": "eslint --ext .ts,.tsx --cache --fix"
},
"devDependencies": {
"@fh/admin": "workspace:*",
"@fh/utils": "workspace:*",
"@next/eslint-plugin-next": "^14.2.13",
"@swc/core": "^1.7.28",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"fleethub-core": "npm:latest",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"kc-tools": "^1.6.2",
"ky": "^1.7.4",
"lint-staged": "^15.3.0",
"listr2": "^8.2.5",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.2"
},
"resolutions": {
"@emotion/serialize": "1.2.0"
},
"packageManager": "yarn@4.1.0",
"engines": {
"npm": "Please use yarn"
}
}