-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.79 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
84
85
86
87
88
89
90
91
92
93
{
"name": "@newesissrl/payload-zitadel-plugin",
"version": "0.0.38",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Newesissrl/payload-zitadel-plugin.git",
"author": "Newesis Srl",
"license": "Apache-2.0",
"files": [
"dist",
"LICENSE",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md"
],
"scripts": {
"version:show": "cat package.json | grep version",
"dev": "tsc --watch",
"build": "rimraf dist/ && yarn build:swc && yarn build:tsc && yarn build:components",
"build:tsc": "tsc --p tsconfig.json",
"build:components": "webpack --config webpack.components.config.js",
"build:swc": "swc ./src -d ./dist --config-file .swcrc",
"test": "jest",
"test:watch": "jest --watch",
"serve:cov": "serve coverage -c ../serve.json",
"lint": "eslint . --ext .ts",
"push:cov": "yarn test && docker run -v $PWD:/code codacy/codacy-coverage-reporter report --coverage-reports /code/coverage/lcov.info"
},
"dependencies": {
"dotenv": "^16.4.5",
"payload": "^2.30.3"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.24.7",
"@parcel/transformer-typescript-types": "2.12.0",
"@payloadcms/db-mongodb": "^1.5.1",
"@payloadcms/richtext-slate": "^1.5.2",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.36",
"swc-loader": "^0.2.6",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "^22.7.6",
"@types/passport": "1.0.16",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.17.0",
"babel-loader": "^9.1.2",
"cliui": "^8.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.9.1",
"file-loader": "^6.2.0",
"jest": "29.7.0",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.9.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.7",
"rimraf": "^6.0.1",
"sass-loader": "^16.0.1",
"serve": "^14.2.3",
"string-width": "^7.2.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"@emotion/react": "^11.11.1",
"cookie-parser": "^1.4.6",
"payload": "^2.30.3",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"payload",
"plugin",
"payload-plugin",
"payloadcms",
"zitadel"
]
}