This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "@payloadcms/plugin-sentry",
"version": "0.0.4",
"homepage:": "https://payloadcms.com",
"repository": "[email protected]:payloadcms/plugin-sentry.git",
"description": "Sentry plugin for Payload",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rimraf dist && rimraf dev/yarn.lock",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"sentry",
"error handling"
],
"author": "[email protected]",
"license": "MIT",
"files": [
"dist"
],
"peerDependencies": {
"payload": "^1.10.1 || ^2.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@sentry/node": "^7.55.2",
"@sentry/types": "^7.54.0",
"express": "^4.18.2"
},
"devDependencies": {
"@payloadcms/eslint-config": "^0.0.1",
"@types/express": "^4.17.9",
"@types/jest": "^29.5.2",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"nodemon": "^2.0.6",
"payload": "^1.10.1",
"prettier": "^2.7.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.1.3"
}
}