-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 734 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 734 Bytes
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
{
"name": "devops-testing",
"module": "app/root.tsx",
"type": "module",
"scripts": {
"dev": "remix dev",
"clean": "rm -rf ./build/ ./node_modules/",
"build": "remix vite:build",
"start": "remix-serve build/server/index.js"
},
"devDependencies": {
"@remix-run/dev": "^2.12.1",
"@types/bun": "latest",
"@types/react": "^18.3.9",
"drizzle-kit": "^0.24.2",
"vite": "^5.4.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@remix-run/node": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/serve": "^2.12.1",
"drizzle-orm": "^0.33.0",
"isbot": "4",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}