-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.31 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": "vite-amplify",
"private": true,
"version": "1.0.1",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bebeal/vite-amplify"
},
"bugs": {
"url": "https://github.com/bebeal/vite-amplify/issues"
},
"scripts": {
"build": "yarn build:cdk && yarn build:client && yarn build:server && yarn postbuild",
"build:client": "tsc && vite build",
"build:server": "tsc -p tsconfig.node.json && vite build --ssr src/entry-server.tsx",
"build:cdk": "CDK_OUTDIR=cdk.out tsx cdk/cdk.ts",
"clean": "rimraf dist node_modules yarn.lock .amplify-hosting cdk.out",
"dev": "nodemon --watch server --exec tsx server",
"deploy:cdk": "cdk deploy",
"format": "prettier --write src server.ts api",
"lint": "yarn eslint src server.ts api --report-unused-disable-directives --max-warnings 0",
"postbuild": "chmod +x postbuild.sh && ./postbuild.sh",
"serve": "node dist/server/server.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@carbon/icons-react": "^11.70.0",
"express": "^4.21.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.9.6",
"react-tweet": "^3.2.2"
},
"devDependencies": {
"@bebeal/console-prefix-plugin": "^0.1.6",
"@eslint/js": "^9.39.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@types/compression": "^1.8.1",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^9.14.0",
"@types/express": "^5.0.5",
"@types/node": "^22.19.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/source-map-support": "^0.5.10",
"@vitejs/plugin-react": "^4.7.0",
"aws-cdk": "^2.1032.0",
"aws-cdk-lib": "^2.225.0",
"compression": "^1.8.1",
"constructs": "^10.4.3",
"dotenv": "^16.6.1",
"eslint": "^9.39.1",
"next-themes": "^0.4.6",
"nodemon": "^3.1.11",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"serve-static": "^1.16.2",
"source-map-support": "^0.5.21",
"tailwindcss": "^4.1.17",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vite": "^6.4.1",
"vite-plugin-svgr": "^4.5.0"
},
"resolutions": {
"glob": "^10.5.0"
},
"engines": {
"node": ">=20",
"yarn": ">=4",
"npm": ">=9"
},
"packageManager": "yarn@4.9.1"
}