-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.73 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
{
"name": "spiel-bun",
"private": true,
"version": "1.0.1",
"nodeArgs": [
"--disable-warning=ExperimentalWarning"
],
"scripts": {
"dev": "npx tsx run.ts --mode development --web-port 3000",
"dev-bun": "nodemon --exec 'bun run.ts' --watch server --watch shared --watch *.ts --ext ts,tsx,js,mjs,json",
"build": "vite build",
"prod": "vite build && bun run.ts --mode=production",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.840.0",
"axios": "^1.7.5",
"babel-plugin-styled-components": "^2.1.4",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.21.2",
"mime": "^4.0.1",
"nocache": "^4.0.0",
"openai": "^5.8.2",
"pg": "^8.16.2",
"pg-server": "^0.1.8",
"pgwire": "^0.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sql-formatter": "^15.4.1",
"styled-components": "^6.1.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/mime": "^4.0.0",
"@types/node": "^24.0.10",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"esbuild": "^0.25.5",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"nodemon": "^3.1.0",
"postject": "^1.0.0-alpha.6",
"tsx": "^4.20.3",
"typescript": "^5.2.2",
"vite": "^5.2.8"
}
}