-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 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
{
"name": "@mongoosejs/studio",
"version": "0.3.10",
"description": "A Mongoose-native MongoDB UI with schema-aware autocomplete, AI-assisted queries, and dashboards that understand your models - not just your data.",
"homepage": "https://mongoosestudio.app/",
"repository": {
"type": "git",
"url": "https://github.com/mongoosejs/studio"
},
"license": "Apache-2.0",
"dependencies": {
"@ai-sdk/anthropic": "2.x",
"@ai-sdk/google": "2.x",
"@ai-sdk/openai": "2.x",
"ace-builds": "^1.43.6",
"ai": "5.x",
"archetype": "0.13.1",
"csv-stringify": "6.3.0",
"ejson": "^2.2.3",
"extrovert": "^0.2.0",
"marked": "15.0.12",
"node-inspect-extracted": "3.x",
"regexp.escape": "^2.0.1",
"tailwindcss": "3.4.0",
"vue": "3.x",
"vue-toastification": "^2.0.0-rc.5",
"webpack": "5.x",
"time-commando": "1.0.1",
"xss": "^1.0.15"
},
"peerDependencies": {
"mongoose": "7.x || 8.x || ^9.0.0"
},
"optionalPeerDependencies": {
"@mongoosejs/task": "0.5.x || 0.6.x"
},
"devDependencies": {
"@masteringjs/eslint-config": "0.1.1",
"axios": "1.2.2",
"dedent": "^1.6.0",
"eslint": "9.30.0",
"express": "4.x",
"mocha": "10.2.0",
"mongodb-memory-server": "^11.0.1",
"mongoose": "9.x",
"sinon": "^21.0.1"
},
"scripts": {
"lint": "eslint .",
"seed": "node seed/index.js",
"start": "node ./local.js",
"tailwind": "tailwindcss -o ./frontend/public/tw.css",
"tailwind:watch": "tailwindcss -o ./frontend/public/tw.css --watch",
"test": "mocha test/*.test.js",
"test:frontend": "mocha test/frontend/*.test.js"
}
}