-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.67 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
{
"name": "kodlyft-fsm-frontend",
"version": "0.1.0",
"description": "KodLyft FSM frontends — design tokens, shared UI, console, portal, and mobile.",
"private": true,
"type": "module",
"author": "KodLyft <hello@kodlyft.com>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"design",
"ui",
"api",
"console",
"portal",
"mobile"
],
"scripts": {
"prepare": "cd .. && husky frontend/.husky || true",
"tokens": "yarn workspace @kodlyft/design build",
"dev:console": "yarn workspace @kodlyft/console dev",
"dev:portal": "yarn workspace @kodlyft/portal dev",
"dev:mobile": "yarn workspace @kodlyft/mobile dev",
"build": "yarn tokens && yarn build:console && yarn build:portal && yarn build:mobile",
"build:console": "yarn workspace @kodlyft/console build",
"build:portal": "yarn workspace @kodlyft/portal build",
"build:mobile": "yarn workspace @kodlyft/mobile build",
"typecheck": "yarn workspaces run typecheck",
"test": "yarn workspaces run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.4.1",
"eslint-plugin-vue": "^10.9.2",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"vitest": "^3.2.4",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.4"
}
}