-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "next-template",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"typecheck": "tsc --noEmit",
"generate:schema": "npx openapi-typescript http://api.nanocl.internal/explorer/swagger.json -o ./types/schema.d.ts",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@monaco-editor/react": "^4.5.1",
"ansi-to-html": "^0.7.2",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"liquidjs": "^10.8.3",
"lodash": "^4.17.21",
"lucide-react": "0.252.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"nanocl-gui-toolkit": "file:../nanocl-gui-toolkit",
"next": "^13.4.7",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-day-picker": "^8.8.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.8",
"rxjs": "^7.8.1",
"tailwind-merge": "^1.13.2",
"yaml": "^2.3.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "^3.12.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "^5.1.3"
}
}