forked from instill-ai/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "frontend",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"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"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"husky": "^7.0.0",
"js-yaml": "^4.1.0",
"lint-staged": ">=10",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"@instill-ai/prettier-config-cortex": "workspace:*",
"turbo": "latest"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]"
}