-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.76 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
80
81
82
83
84
85
86
{
"name": "lunalytics",
"version": "0.7.3",
"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"
},
"scripts": {
"dev": "concurrently \"npm run watch\" \"npm run server:watch\"",
"watch": "vite --port 3000",
"build": "vite build --config ./vite.config.js",
"lint": "npm run lint:app && npm run lint:server",
"lint:app": "eslint app --ext js,jsx",
"lint:server": "eslint server --ext js",
"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",
"migrate": "node ./scripts/migrate_manual.js",
"prepare": "husky install",
"preview": "vite preview",
"reset:password": "node ./scripts/reset.js",
"server:watch": "nodemon --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",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"better-sqlite3": "^9.4.1",
"classnames": "^2.5.1",
"cookie": "^1.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^3.1.6",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"mongoose": "^8.8.4",
"pg": "^8.13.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-router-dom": "^6.19.0",
"react-toastify": "^10.0.5",
"recharts": "^2.13.3",
"uuid": "^9.0.1",
"winston": "^3.15.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^1.6.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^13.12.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"husky": "^8.0.3",
"inquirer": "^8.0.0",
"lint-staged": "^15.1.0",
"node-mocks-http": "^1.14.1",
"nodemon": "^3.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.79.5",
"vite": "^5.0.10",
"vite-plugin-compression2": "^1.3.3",
"vitepress": "^1.1.3",
"vitest": "^1.5.3"
}
}