-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.92 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
62
63
64
65
{
"name": "vite-amplify",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bebeal/vite-amplify"
},
"bugs": {
"url": "https://github.com/bebeal/vite-amplify/issues"
},
"scripts": {
"build": "yarn clean && yarn && 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",
"clean": "rimraf dist node_modules yarn.lock .amplify-hosting",
"dev": "nodemon --watch server --exec tsx server",
"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 server/server.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"express": "^4.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"react-tweet": "^3.2.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@tailwindcss/typography": "^0.5.15",
"@types/compression": "^1.7.5",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"eslint": "9.10.0",
"next-themes": "^0.3.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.45",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"serve-static": "^1.16.2",
"tailwindcss": "^3.4.11",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "8.5.0",
"vite": "^5.4.4",
"vite-plugin-svgr": "^4.2.0"
},
"engines": {
"node": ">=20",
"yarn": ">=4",
"npm": ">=9"
},
"packageManager": "[email protected]"
}