-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "neogma",
"version": "1.14.1",
"description": "Object-Graph-Mapping neo4j framework, Fully-typed with TypeScript, for easy and flexible node and relationship creation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jason Athanasoglou <jathanasoglou@outlook.com>",
"license": "MIT",
"files": [
"dist/**/*"
],
"dependencies": {
"@types/revalidator": "^0.3.12",
"clone": "^2.1.2",
"dotenv": "^16.3.1",
"neo4j-driver": "^5.16.0",
"revalidator": "^0.3.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/clone": "^2.1.4",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"scripts": {
"lint": "eslint --fix --quiet src/**/*.ts",
"format": "prettier --log-level silent --write src/**/*.ts",
"prepare": "rimraf -rf dist && tsc",
"prebuild": "yarn lint && yarn format",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themetalfleece/neogma.git"
},
"keywords": [
"neo4j",
"ogm",
"graph",
"databases",
"cypher"
],
"bugs": {
"url": "https://github.com/themetalfleece/neogma/issues"
},
"homepage": "https://github.com/themetalfleece/neogma#readme"
}