-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "abc-journal",
"version": "1.2.0",
"description": "ABC Data journal app for tracking child behavior patterns",
"main": "server/index.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "nodemon server/index.js",
"client:dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"lint": "eslint . --ext .js,.jsx",
"db:migrate": "node server/db/migrate.js"
},
"keywords": [
"abc-data",
"behavior-tracking",
"journal"
],
"author": "",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@google/generative-ai": "^0.24.1",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"bcrypt": "^5.1.1",
"better-sqlite3": "^9.2.2",
"cors": "^2.8.5",
"date-fns": "^3.0.6",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"recharts": "^3.7.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.0.3",
"vite": "^5.0.11",
"vitest": "^1.2.0"
}
}