-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 797 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 797 Bytes
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
{
"name": "data-api",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "modelence build",
"start": "node .modelence/build/app.mjs",
"dev": "modelence dev",
"test": "jest"
},
"dependencies": {
"modelence": "^0.10.2",
"mongodb": "^6.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^6.22.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"jest": "^30.2.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}