-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 791 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 791 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
{
"name": "@forestadmin/datasource-mongo",
"version": "1.75.0",
"main": "dist/index.js",
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForestAdmin/agent-nodejs.git",
"directory": "packages/datasource-mongo"
},
"dependencies": {
"@forestadmin/datasource-mongoose": "1.75.0",
"@forestadmin/datasource-toolkit": "1.75.0",
"json-stringify-pretty-compact": "^3.0.0",
"mongoose": "8.21.0",
"tunnel-ssh": "^5.2.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf coverage dist",
"lint": "eslint src test",
"test": "jest"
},
"devDependencies": {}
}