-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.4 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
{
"name": "payload-plugin-scheduler",
"version": "0.1.3",
"homepage:": "https://github.comw/wkentdag/payload-plugin-scheduler",
"repository": "[email protected]:wkentdag/payload-plugin-scheduler.git",
"description": "Scheduled posts plugin for PayloadCMS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.20.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"keywords": [
"payload",
"cms",
"plugin",
"schedule",
"scheduler",
"cron",
"node-schedule"
],
"scripts": {
"build": "tsc",
"dev": "cd dev && yarn dev",
"format": "prettier --write",
"test": "cd dev && yarn test",
"test:all": "run-p test:mongo test:postgres",
"test:mongo": "PORT=3001 DATABASE_URI=mongodb://127.0.0.1/plugin-development PAYLOAD_CONFIG_PATH=src/payload.mongo.config.ts yarn test",
"test:postgres": "PORT=3002 DATABASE_URI=postgres://127.0.0.1:5432/payload-plugin-scheduler PAYLOAD_CONFIG_PATH=src/payload.postgres.config.ts yarn test",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rimraf dist && rimraf dev/yarn.lock",
"prepare": "ynpx simple-git-hooks",
"prerelease": "yarn clean && yarn build && yarn test:postgres",
"release": "release-it"
},
"author": "Will Kent-Daggett",
"license": "MIT",
"devDependencies": {
"@payloadcms/eslint-config": "^0.0.1",
"@swc/jest": "^0.2.28",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.11",
"@types/node-schedule": "^2.1.7",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"payload": "^2.12.1",
"prettier": "^2.7.1",
"react": "^18.0.0",
"release-it": "^17.2.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^4.8.4",
"webpack": "^5.90.3",
"ynpx": "^2.1.6"
},
"dependencies": {
"algoliasearch": "^4.23.3",
"date-fns": "^3.6.0",
"debug": "^4.3.4",
"node-schedule": "^2.1.1",
"qs": "^6.12.1",
"ts-deepmerge": "^7.0.0"
}
}