-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.69 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.69 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
{
"name": "chronologue",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm:frontend-dev\" \"npm:backend-dev\"",
"build": "npm run backend-build && npm run frontend-build",
"preview": "concurrently \"npm:frontend-preview\" \"npm:backend-preview\"",
"frontend-dev": "cd frontend && vite",
"frontend-build": "cd frontend && tsc -b && vite build",
"frontend-preview": "cd frontend && vite preview",
"backend-dev": "cd backend && tsc-watch --preserveWatchOutput --onSuccess \"node --env-file=.env.development dist/index.js\"",
"backend-build": "cd backend && tsc -b",
"backend-preview": "cd backend && node --env-file=.env.production dist/index.js",
"shared": "cd shared && tsc -b",
"lint": "eslint ."
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@tanstack/react-query": "^5.59.20",
"@types/node": "^22.13.8",
"@types/papaparse": "^5.3.15",
"concurrently": "^9.1.0",
"dompurify": "^3.2.6",
"express": "^4.21.2",
"html-react-parser": "^5.2.5",
"papaparse": "^5.5.2",
"pg": "^8.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"react-select": "^5.8.3",
"tsc-watch": "^6.2.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/express": "^5.0.0",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.10.0",
"vite": "^6.2.0"
}
}