-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "cronpilot",
"version": "2.6.0",
"author": "Christian Kellner",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev:server": "node --watch server/src/index.js",
"dev:client": "vite",
"dev": "yarn dev:server & yarn dev:client",
"build": "vite build",
"test:server": "vitest run --config vitest.config.js",
"test:client": "vitest run --config vite.config.js",
"test": "yarn test:server && yarn test:client",
"start": "yarn build && node server/src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky",
"copyright": "node ./tools/copyright.js",
"release": "node ./tools/release/release.js"
},
"dependencies": {
"better-sqlite3": "^12.9.0",
"cors": "^2.8.6",
"cron-parser": "^5.5.0",
"cronstrue": "^3.14.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.1.0",
"node-cron": "^4.2.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "17.6.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "17.0.2",
"lucide-react": "^1.14.0",
"marked": "^18.0.3",
"prettier": "3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"supertest": "^7.2.2",
"tailwindcss": "^4.2.4",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"yarn copyright"
],
"**/*.{json,css,md}": "prettier --write"
}
}