-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.73 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
82
83
84
85
86
{
"name": "wordpress-git-publisher-backend",
"version": "1.0.0",
"description": "Backend dla automatycznego generowania i publikowania artykułów WordPress na podstawie aktywności Git",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node --experimental-vm-modules src/server.js",
"dev": "nodemon --experimental-vm-modules --watch src src/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui",
"test:playwright:debug": "PWDEBUG=1 playwright test",
"test:playwright:report": "playwright show-report",
"test:puppeteer": "NODE_OPTIONS=--experimental-vm-modules jest -c jest-puppeteer.config.mjs test/index.test.js --detectOpenHandles --forceExit",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js",
"setup": "npm install",
"prettier": "prettier --write \"src/**/*.js\"",
"prepare": "husky install"
},
"keywords": [
"wordpress",
"git",
"ollama",
"ai",
"automation",
"blog",
"publisher"
],
"author": "Developer",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-validator": "^7.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/runtime": "^7.27.6",
"@babel/runtime-corejs3": "^7.24.0",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/puppeteer": "^5.4.7",
"axios": "^1.9.0",
"babel-jest": "^29.7.0",
"chai": "^5.2.0",
"core-js": "^3.36.0",
"dotenv": "^16.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"jest-fetch-mock": "^3.0.3",
"jest-puppeteer": "^11.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^26.1.0",
"mocha": "^11.5.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"puppeteer": "^24.10.0",
"supertest": "^6.3.3",
"ts-jest": "^29.3.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/wordpress-git-publisher.git"
}
}