-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.27 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ai-contract-reader",
"version": "1.0.0",
"description": "AI Contract Reading Assistant - 帮助普通人理解法律条款的智能助手",
"main": "dist/server.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "ts-node-dev --respawn --transpile-only src/server/index.ts",
"dev:client": "vite",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc",
"build:client": "vite build",
"start": "node dist/server/index.js",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"keywords": [
"ai",
"contract",
"legal",
"reading",
"assistant",
"rental",
"analysis"
],
"author": "ai-ideas-lab",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.7.1",
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"mammoth": "^1.6.0",
"sharp": "^0.33.2",
"openai": "^4.26.0",
"dotenv": "^16.3.1",
"morgan": "^1.10.0",
"express-rate-limit": "^7.1.5",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/multer": "^1.4.11",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"@types/jsonwebtoken": "^9.0.5",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-react": "^4.2.1",
"@vitejs/plugin-react": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"@mui/material": "^5.15.0",
"@mui/icons-material": "^5.15.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/x-data-grid": "^6.18.2",
"concurrently": "^8.2.2",
"prisma": "^5.7.1"
}
}