-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "payload-cloudinary-plugin",
"version": "0.1.14",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/finkinfridom/payload-cloudinary-plugin.git",
"author": "a.maghini@gmail.com",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"version:show": "cat package.json | grep version",
"dev": "tsc --watch",
"build": "tsc",
"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"
},
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"cloudinary": "^2.5.1",
"dotenv": "^16.4.7",
"payload": "^2.30.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@payloadcms/db-mongodb": "^1.7.3",
"@payloadcms/richtext-slate": "^1.0.7",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"jest": "29.7.0",
"serve": "^14.2.4",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}