-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 991 Bytes
/
package.json
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
{
"name": "i-graphql",
"version": "0.1.9",
"private": false,
"license": "MIT",
"description": "GraphQL Friendly ORM for MongoDB",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tspc -p tsconfig.build.json",
"start": "tspc -p tsconfig.build.json --watch",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/igraphql.git"
},
"devDependencies": {
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mongodb": "^5.1.0",
"prettier": "^3.3.0",
"ts-patch": "^3.0.0",
"typescript": "^5.1.3",
"typescript-transform-paths": "^3.4.6",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"vitest-mongodb": "^0.0.5"
},
"peerDependencies": {
"mongodb": ">= 5.1.0"
}
}