-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.02 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@foxify/odin",
"version": "0.10.0",
"description": "Active Record Model",
"author": {
"name": "Ardalan Amini",
"email": "[email protected]",
"url": "https://ardalanamini.com"
},
"license": "MIT",
"homepage": "https://github.com/foxifyjs/odin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/foxifyjs/odin.git"
},
"engines": {
"node": ">=10"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "npm run build -- --watch",
"prepublishOnly": "node scripts/prepare.js",
"lint": "eslint src",
"format": "npm run format:prettier && npm run format:eslint",
"format:prettier": "prettier --write src",
"format:eslint": "eslint --fix src",
"test": "jest --runInBand",
"coverage": "npm test -- --coverage"
},
"files": [
"dist"
],
"keywords": [
"database",
"active",
"record",
"typescript",
"mongodb",
"deep",
"relation",
"graphql",
"json",
"schema",
"validation"
],
"dependencies": {
"@types/graphql": "^0.13.4",
"@types/graphql-iso-date": "^3.3.1",
"@types/mongodb": "^3.1.19",
"@types/node": "^11.9.3",
"async": "^2.6.2",
"caller-id": "^0.1.0",
"deasync": "^0.1.14",
"graphql": "^0.13.2",
"graphql-iso-date": "^3.6.1",
"mongodb": "^3.6.1",
"prototyped.js": "^1.0.0",
"verifications": "^0.3.0"
},
"peerDependencies": {
"@foxify/schema": "^1.0.1"
},
"devDependencies": {
"@foxify/schema": "^1.0.1",
"@types/async": "^2.4.1",
"@types/deasync": "^0.1.0",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"dotenv": "^6.2.0",
"eslint": "^7.8.1",
"fs-readdir-recursive": "^1.1.0",
"jest": "^26.4.2",
"jest-environment-node": "^26.3.0",
"mongodb-memory-server": "^6.6.7",
"prettier": "^2.1.1",
"rimraf": "^2.6.3",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}