-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.52 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.52 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
80
81
82
83
84
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"toolings/*"
],
"scripts": {
"build": "turbo run build",
"docker-build": "./scripts/docker-build.sh",
"docker-run-host": "./scripts/docker-run-host.sh",
"docker-remove": "./scripts/docker-remove.sh",
"docker-build-test": "./scripts/docker-build-test.sh",
"docker-run-test": "./scripts/docker-run-test.sh",
"docker:prune-cache": "docker buildx prune",
"dev": "turbo run dev dev-ts --continue",
"lint": "turbo run lint",
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"test": "turbo run test",
"ci-build-packages": "turbo run build lint test",
"ci-build-storybook": "turbo run build --filter=@instill-ai/design-tokens --filter=@instill-ai/design-system",
"prettier:fix": "prettier --write",
"prepare": "husky install",
"download-component-icons": "pnpm --filter=instillai-console download-component-icons"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@instill-ai/prettier-config-cortex": "workspace:*",
"eslint": "^8.57.1",
"husky": "^7.0.4",
"lint-staged": "^16.2.7",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.6.14",
"turbo": "^2.7.6",
"typescript": "catalog:",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"vite": "^5.4.18",
"express": "4.21.1",
"braces": "^3.0.3",
"ws": "8.17.1",
"svelte": "^4.2.19",
"elliptic": "^6.6.0",
"tar": "^6.2.1",
"micromatch": "^4.0.8",
"semver": "^7.5.2",
"cross-spawn": "^7.0.5",
"path-to-regexp": "^6.3.0",
"cookie": "^0.7.1",
"markdown-to-jsx": "^7.4.0",
"webpack": "^5.94.0",
"nanoid": "^3.3.8",
"katex": "0.16.21",
"@babel/runtime": "^7.26.10",
"prismjs": "^1.30.0",
"image-size": "^1.2.1",
"esbuild": "^0.25.0",
"tar-fs": "^3.1.1",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@radix-ui/react-primitive": "^2.1.3",
"@radix-ui/react-compose-refs": "^1.1.2",
"@radix-ui/react-popper": "^1.2.7",
"@radix-ui/react-portal": "^1.1.9"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}