This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "remix-enterprise",
"version": "0.1.0",
"type": "module",
"bin": {
"remix-enterprise": "bin/remix-enterprise.js"
},
"scripts": {
"dev": "node ./server.js",
"dev:docker": "docker compose up",
"start": "cross-env NODE_ENV=production node ./server.js",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
},
"devDependencies": {
"@remix-run/dev": "^2.9.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"aws-cdk": "2.140.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prisma": "^5.13.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.4.5",
"typescript-eslint": "^7.8.0",
"vite": "^5.2.11"
},
"dependencies": {
"@prisma/client": "^5.13.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.0.3",
"@remix-run/express": "^2.9.1",
"@remix-run/node": "^2.9.1",
"@remix-run/react": "^2.9.1",
"aws-cdk-lib": "2.140.0",
"compression": "^1.7.4",
"constructs": "^10.0.0",
"cross-env": "^7.0.3",
"express": "^4.19.2",
"isbot": "^4.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-auth": "^3.6.0",
"remix-auth-google": "^2.0.0",
"source-map-support": "^0.5.21"
}
}