This repository was archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.19 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.19 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
79
80
81
{
"name": "payload-dependency-graph",
"version": "2.3.0",
"repository": "git@github.com:GeorgeHulpoi/payload-dependency-graph.git",
"homepage": "https://georgehulpoi.github.io/payload-dependency-graph",
"description": "This plugin creates a dependency graph between collections and globals. The graph updates automatically, because the plugin observes the changes made on any collection or globals.",
"bugs": {
"url": "https://github.com/GeorgeHulpoi/payload-dependency-graph/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"dependencies",
"dependency",
"graph"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest tests --detectOpenHandles --forceExit",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"prepare": "husky install",
"generate:api": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --entryDocument overview.md"
},
"author": {
"name": "George-Valentin Hulpoi",
"url": "https://gvhdev.com"
},
"license": "MIT",
"peerDependencies": {
"@payloadcms/db-mongodb": "^1.0.0",
"payload": "^2.0.2"
},
"peerDependenciesMeta": {
"@payloadcms/db-mongodb": {
"optional": true
}
},
"devDependencies": {
"@payloadcms/db-mongodb": "^1.0.5",
"@payloadcms/eslint-config": "^0.0.1",
"@payloadcms/richtext-slate": "^1.0.1",
"@swc/jest": "^0.2.28",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"mongodb-memory-server": "^8.15.1",
"payload": "^2.0.14",
"prettier": "^2.7.1",
"react": "^18.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.ts": "eslint src --cache --fix",
"*.--write": "prettier --write"
}
}