-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "ui",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "python -c \"import os; import shutil; import random; os.path.exists('tmp/') and shutil.rmtree('tmp/'); os.environ['R'] = str(random.randint(0, 32767)); os.system('next dev')\"",
"build": "python -c \"import os; os.environ['NODE_ENV'] = 'release'; os.system('next build')\"",
"start": "next start",
"lint": "next lint",
"format": "prettier --write '{app,components,constants}/**/*.{js,jsx,json}'",
"format-check": "prettier --check '{app,components,constants}/**/*.{js,jsx,json}'"
},
"dependencies": {
"@magic/format": "^0.0.59",
"@monaco-editor/react": "^4.6.0",
"@nextui-org/react": "^2.2.10",
"@tauri-apps/api": "^1.5.3",
"framer-motion": "^11.0.20",
"next": "^14.1.4",
"openai": "^4.40.2",
"react": "^18.2.0",
"react-ace": "^11.0.1",
"react-dom": "^18.2.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "^14.1.4",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1"
}
}