-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@relate/common",
"version": "1.0.14",
"description": "JS toolkit",
"author": "Neo4j Inc.",
"license": "GPL-3.0",
"homepage": "https://github.com/neo4j-devtools/relate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-devtools/relate.git"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "corepack pnpm build:clean",
"clean": "rimraf dist",
"test": "jest",
"build": "tsc",
"build:clean": "run-s clean build",
"watch": "tsc -w",
"start": "run-s build:clean watch",
"generate:docs": "typedoc"
},
"devDependencies": {
"@nestjs/common": "9.4.3",
"@nestjs/config": "2.3.3",
"@nestjs/core": "9.4.3",
"@nestjs/testing": "9.4.3",
"@relate/types": "workspace:*",
"@types/decompress": "4.2.4",
"@types/fs-extra": "9.0.13",
"@types/got": "9.6.12",
"@types/jest": "29.5.1",
"@types/jsonwebtoken": "9.0.2",
"@types/jszip": "3.4.1",
"@types/lodash": "4.14.194",
"@types/node": "18.16.4",
"@types/node-forge": "1.3.2",
"@types/semver": "7.3.13",
"@types/tar": "6.1.4",
"@types/uuid": "9.0.1",
"graphql": "16.6.0",
"jest": "29.5.0",
"nock": "13.3.1",
"npm-run-all": "4.1.5",
"ts-jest": "29.1.0",
"typedoc": "0.24.8",
"typedoc-plugin-markdown": "3.15.3",
"typescript": "5.1.3"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.1.0",
"@nestjs/core": "^9.0.0",
"@relate/types": "workspace:^",
"graphql": "^16.5.0"
},
"dependencies": {
"@neo4j/code-signer": "1.1.4",
"class-validator": "0.14.0",
"decompress": "4.2.1",
"fs-extra": "9.1.0",
"got": "11.8.6",
"jsonwebtoken": "9.0.0",
"lodash": "4.17.21",
"neo4j-driver-lite": "5.8.0",
"node-forge": "1.3.2",
"p-limit": "3.1.0",
"rxjs": "7.8.1",
"semver": "7.5.2",
"tar": "6.1.14",
"tree-kill": "1.2.2",
"uuid": "9.0.0"
}
}