-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.88 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.88 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "lunalytics",
"version": "0.10.22",
"description": "Open source Node.js server/website monitoring tool",
"private": true,
"author": "KSJaay <ksjaay@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ksjaay/lunalytics.git"
},
"engines": {
"node": ">= 22.x"
},
"scripts": {
"dev": "concurrently \"npm run watch\" \"npm run server:watch\"",
"watch": "vite --port 3000",
"build": "vite build --config ./vite.config.js",
"build:emails": "node ./scripts/transpile-emails.cjs",
"create:notification": "node ./scripts/notification.js",
"docker": "node ./scripts/setup.js && npm run start",
"docker:release": "./docker/release.bash",
"lint": "npm run lint:app && npm run lint:server",
"lint:app": "oxlint app",
"lint:server": "oxlint server",
"test:app": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npm run build && cypress open",
"test:db": "node ./test/shared/setupDatabase.js",
"test:server": "npm run test:db && cross-env NODE_ENV=test node server/index.js",
"test:ui": "vitest run --coverage --watch --ui",
"migrate": "node ./scripts/migrate_manual.js",
"dev:prepare": "husky",
"preview": "vite preview",
"reset:password": "node ./scripts/reset.js",
"server:watch": "nodemon --inspect --delay 2 --watch server --watch shared ./server/index.js",
"setup": "npm install && node ./scripts/setup.js && npm run build",
"start": "cross-env NODE_ENV=production node server/index.js",
"unused": "npx unimported"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/react": "0.1.19",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@lunalytics/ui": "0.1.19",
"axios": "1.12.2",
"bcryptjs": "3.0.2",
"better-sqlite3": "11.10.0",
"classnames": "2.5.1",
"compare-versions": "6.1.1",
"compression": "1.8.1",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"cron": "4.3.1",
"cross-env": "7.0.3",
"dayjs": "1.11.13",
"express": "4.21.2",
"i18next": "25.3.2",
"i18next-browser-languagedetector": "8.2.0",
"i18next-http-backend": "3.0.2",
"inquirer": "12.6.3",
"jsonata": "2.0.6",
"jsonwebtoken": "9.0.2",
"knex": "3.1.0",
"mobx": "6.13.7",
"mobx-react-lite": "4.1.0",
"nanoid": "5.1.5",
"nodemailer": "7.0.12",
"pg": "8.16.0",
"ping": "0.4.4",
"react": "19.1.1",
"react-colorful": "5.6.1",
"react-dom": "19.1.1",
"react-i18next": "15.6.1",
"react-icons": "5.5.0",
"react-router-dom": "7.6.2",
"react-toastify": "11.0.5",
"react-window": "1.8.11",
"recharts": "3.2.1",
"swapy": "1.0.5",
"systeminformation": "^5.27.11",
"ua-parser-js": "2.0.3",
"uuid": "11.1.0",
"winston": "3.17.0",
"winston-daily-rotate-file": "5.0.0"
},
"devDependencies": {
"@babel/core": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@eslint/compat": "1.3.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.33.0",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@types/react-window": "1.8.8",
"@vitejs/plugin-react-swc": "4.0.0",
"@vitest/coverage-v8": "4.0.4",
"@vitest/ui": "4.0.4",
"concurrently": "9.2.0",
"cypress": "15.8.1",
"eslint": "9.33.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"globals": "16.3.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"node-mocks-http": "1.17.2",
"nodemon": "3.1.10",
"oxlint": "1.5.0",
"rollup-plugin-visualizer": "6.0.3",
"sass": "1.89.2",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1",
"vite": "7.1.12",
"vite-plugin-compression2": "2.2.0",
"vitest": "4.0.4"
}
}