-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
111 lines (111 loc) · 3.59 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "instillai-console",
"version": "0.62.0-beta",
"main": "index.js",
"repository": "https://github.com/instill-ai/console.git",
"author": "Instill AI",
"license": "Elastic License 2.0",
"private": true,
"@instill-ai/prettier-config-cortex": "workspace:*",
"scripts": {
"dev": "NEXT_ENV_UPDATE_ENV_FILE=false node next-env.mjs && next dev",
"build": "next build",
"start": "next start",
"test": "echo 'wip'",
"prepare": "node -e \"if (process.env.NODE_ENV === 'production'){process.exit(1)} \" || husky install",
"prettier:fix": "prettier --write",
"prettier:check": "prettier --check",
"lint": "next lint",
"e2e:env": "NEXT_ENV_UPDATE_ENV_FILE=false node next-env.mjs",
"e2e:local": "pnpm e2e:env && npx playwright test --project=chromium --debug",
"e2e:first-time-login": "pnpm e2e:env && npx playwright test --project=first-time-login",
"e2e:ci": "pnpm e2e:env && pnpm e2e:first-time-login && npx playwright test --project=chromium --project=firefox --project=webkit",
"download-component-icons": "tsx download-component-icons.ts"
},
"dependencies": {
"@amplitude/analytics-browser": "^1.9.1",
"@hookform/resolvers": "^3.3.4",
"@instill-ai/design-system": "workspace:*",
"@instill-ai/design-tokens": "workspace:*",
"@instill-ai/eslint-config-cortex": "workspace:*",
"@instill-ai/prettier-config-cortex": "workspace:*",
"@instill-ai/toolkit": "workspace:*",
"@instill-ai/tsconfig": "workspace:*",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.1.4",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-table": "^8.9.3",
"axios": "^1.6.8",
"clsx": "^1.1.1",
"cookie": "^0.5.0",
"copy-to-clipboard": "^3.3.2",
"cross-env": "^7.0.3",
"echarts": "^5.4.2",
"elkjs": "^0.8.2",
"instill-sdk": "workspace:*",
"next": "^14.2.12",
"next-mdx-remote": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"react-markdown": "^8.0.3",
"reactflow": "^11.8.3",
"remark-frontmatter": "^4.0.1",
"sharp": "^0.32.6",
"shiki": "^0.11.1",
"tailwindcss-animate": "^1.0.6",
"unique-names-generator": "^4.7.1",
"uuid": "^9.0.0",
"yup": "^0.32.11",
"zod": "^3.23.8",
"zustand": "^4.3.7"
},
"devDependencies": {
"@next/env": "^13.5.0",
"@playwright/test": "1.47.1",
"@types/cookie": "^0.5.1",
"@types/json-schema": "^7.0.11",
"@types/node": "^20",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.4",
"dotenv": "^16.3.2",
"eslint": "^8.13.0",
"eslint-config-next": "latest",
"npm-run-all": "^4.1.5",
"openapi-types": "^12.1.3",
"postcss": "^8.4.12",
"react-is": "^18.2.0",
"require-from-string": "^2.0.2",
"tailwindcss": "^3.3.1",
"tsx": "^4.6.2",
"typescript": "^5.5.4",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.9.0"
},
"engines": {
"node": ">=14.6.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
]
}