-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.86 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
{
"name": "comfyci-dashboard",
"version": "0.1.1",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "next lint --fix .",
"format": "npx prettier --check .",
"format-fix": "npx prettier --write .",
"enc": "senv encrypt .env.development.local -o .env.development.local.encrypted && senv encrypt .env.production.local -o .env.production.local.encrypted",
"dec": "senv decrypt .env.development.local.encrypted -o .env.development.local && senv decrypt .env.production.local.encrypted -o .env.production.local",
"storybook": "echo Open storybook in http://localhost:6006/ && start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@next/mdx": "12.3.1",
"@tanstack/react-query": "^5.52.1",
"axios": "^1.7.4",
"flowbite": "^2.5.1",
"flowbite-react": "^0.7.8",
"mixpanel-browser": "^2.55.0",
"next": "14.2.6",
"nextjs-cors": "^2.2.0",
"pi": "^2.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^10.0.5",
"react-icons": "^5.3.0",
"recharts": "^2.12.7"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@mdx-js/react": "2.1.4",
"@types/async-busboy": "^1.1.4",
"@types/node": "18.8.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "10.4.12",
"eslint": "8.56.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.6.15",
"orval": "^6.31.0",
"postcss": "8.4.17",
"prettier": "3.2.5",
"require-from-string": "^2.0.2",
"senv": "^1.0.2",
"tailwindcss": "^3.4.10",
"typescript": "4.8.4",
"webpack": "^5.94.0"
}
}