-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.83 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.83 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
{
"name": "orw-node",
"private": true,
"version": "0.4.0-dev",
"type": "module",
"scripts": {
"build:server:prod": "tsc -p server/tsconfig.json",
"build:client:prod": "tsc && vite build --mode production",
"build:prod": "npm run build:client:prod && npm run build:server:prod",
"start:server:prod": "node --env-file .env.production.local server/dist/server/watcher.js",
"start:prod": "./tools/start-prod.sh",
"build:server:dev": "tsc -p server/tsconfig.json",
"build:client:dev": "tsc && vite build --mode development",
"build:dev": "npm run build:client:dev && npm run build:server:dev",
"start:server:dev": "node --env-file .env.development server/dist/server/watcher.js",
"start:dev": "./tools/start-dev.sh",
"start": "npm run start:prod",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --open",
"watch:standalone": "vite --mode development --open",
"watch": "npm run start:server & vite --mode development --open",
"doc": "typedoc --plugin typedoc-plugin-mdn-links && open ./docs/index.html",
"backup": "./backup/backup.sh && ./backup/reset.sh",
"reset": "./backup/reset.sh",
"clean": "rm -fR node_modules package-lock.json data/cache && npm install --include dev",
"test": "vitest --run",
"coverage": "vitest --run --coverage && open ./coverage/index.html"
},
"dependencies": {
"@kitsuyui/luxon-ext": "^0.1.5",
"better-sqlite3": "^11.0.0",
"deep-diff": "^1.0.2",
"globals": "^15.4.0",
"luxon": "^3.4.4",
"mime-types": "^2.1.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rss": "^1.2.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/better-sqlite3": "^7.6.10",
"@types/deep-diff": "^1.0.5",
"@types/luxon": "^3.4.2",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.14.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "rc-v8",
"@typescript-eslint/parser": "rc-v8",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.4.0",
"eslint-plugin-react-hooks": "beta",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vitest-globals": "^1.5.0",
"jsdom": "^24.1.0",
"prettier": "^3.3.1",
"react-data-table-component": "^7.6.2",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.11",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.28",
"typescript": "^5.2.2",
"typescript-eslint": "rc-v8",
"vite": "^5.2.12",
"vite-plugin-compression2": "^1.1.1",
"vitest": "^1.6.0"
},
"overrides": {
"eslint": "^9.4.0"
}
}