-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"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",
"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",
"@instill-ai/prettier-config-cortex": "workspace:*",
"husky": "^7.0.0",
"lint-staged": ">=10",
"prettier": "latest",
"turbo": "latest",
"typescript": "^5.5.4",
"yaml": "^2.5.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"vite": "^5.2.0",
"express": "4.19.2"
}
},
"prettier": "@instill-ai/prettier-config-cortex",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}