-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.2 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
{
"name": "note_pilot",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:report": "eslint --output-file eslint-report.json --format json .",
"setup_python": "node scripts/setup_python.js",
"test:e2e": "docker compose -f docker-compose.test.yml up -d --wait && dotenv -e .env -e .env.test -- npx playwright test",
"test:e2e:stop": "docker compose -f docker-compose.test.yml down --volumes",
"test:e2e:changed": "docker compose -f docker-compose.test.yml up -d --wait && dotenv -e .env -e .env.test -- npx playwright test --only-changed=main"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.888.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.39.4",
"@prisma/client": "^6.16.3",
"@tailwindcss/typography": "^0.5.19",
"@types/bcryptjs": "^2.4.6",
"@xenova/transformers": "^2.17.2",
"aws-sdk": "^2.1692.0",
"bcryptjs": "^3.0.2",
"crypto": "^1.0.1",
"dotenv": "^17.2.2",
"form-data": "^4.0.4",
"framer-motion": "^12.23.12",
"fs": "^0.0.1-security",
"jose": "^6.1.3",
"lucide-react": "^0.577.0",
"mermaid": "^11.13.0",
"next": "15.5.9",
"next-themes": "^0.4.6",
"node-mailjet": "^6.0.11",
"ollama": "^0.5.17",
"os": "^0.1.2",
"path": "^0.12.7",
"pdf-parse": "^2.4.5",
"pdf2json": "^4.0.2",
"pdfreader": "^3.0.7",
"punycode": "^2.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"uuid": "^13.0.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"babel-jest": "^30.1.2",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.2",
"jest": "^30.2.0",
"prisma": "^6.16.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}