-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.96 KB
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": "chatzpt",
"version": "1.0.0",
"description": "AI 캐릭터 기반 채팅 서비스",
"private": true,
"workspaces": [
"frontend",
"backend",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "cd frontend && npm run test",
"test:backend": "cd backend && npm run test",
"test:watch": "npm run test:frontend:watch & npm run test:backend:watch",
"test:frontend:watch": "cd frontend && npm run test:watch",
"test:backend:watch": "cd backend && npm run test:watch",
"lint": "npm run lint:frontend && npm run lint:backend",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"lint:fix": "npm run lint:frontend:fix && npm run lint:backend:fix",
"lint:frontend:fix": "cd frontend && npm run lint:fix",
"lint:backend:fix": "cd backend && npm run lint:fix",
"clean": "npm run clean:frontend && npm run clean:backend",
"clean:frontend": "cd frontend && rm -rf dist node_modules/.vite",
"clean:backend": "cd backend && rm -rf dist node_modules/.cache",
"db:reset": "cd backend && npm run db:reset",
"db:migrate": "cd backend && npm run db:migrate",
"db:seed": "cd backend && npm run db:seed"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.3.3",
"@types/node": "^20.10.5",
"eslint": "^8.56.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"ai",
"chat",
"react",
"typescript",
"nodejs",
"express"
],
"author": "ChatZPT Team",
"license": "MIT"
}