-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-tailwindcss-netlify-starter",
"version": "0.1.0",
"type": "module",
"description": "My project template for a barebones React/Tailwind CSS PWA front-end hosted on Netlify with an example Netlify function that can be used on the back-end",
"private": true,
"engines": {
"node": ">= 24.x",
"npm": ">= 11.x"
},
"packageManager": "npm@12.0.2",
"scripts": {
"build": "npx vite build && npm run lambda:build",
"clean": "rm -rf ./build && rm -rf ./lambda",
"dev:vite": "npx vite serve --port $PORT",
"format": "npx oxfmt src",
"format:check": "npx oxfmt --check src",
"lambda:build": "npx netlify functions:build --src ./src/functions",
"lambda:serve": "npx netlify functions:serve --functions ./src/functions",
"lint": "npx oxlint .",
"prebuild": "npm run clean",
"preview": "npx vite preview",
"start": "npx concurrently 'npm run dev' 'npm run lambda:serve' --names '📦,💻' --prefix '[{name}] ' --kill-others",
"test": "npm run format:check && npm run lint && npm run typecheck",
"typecheck": "npx tsc --noEmit"
},
"keywords": [],
"repository": {
"url": "https://github.com/mikesprague/react-tailwindcss-netlify-starter"
},
"author": {
"name": "Michael Sprague",
"email": "mikesprague@gmail.com"
},
"homepage": "https://github.com/mikesprague/react-tailwindcss-netlify-starter",
"license": "MIT",
"dependencies": {
"@fontsource-variable/inter": "5.3.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cross-env": "10.1.0",
"dayjs": "1.11.23",
"dotenv": "17.4.2",
"he": "1.2.0",
"jotai": "3.0.0",
"lucide-react": "1.46.0",
"nanoid": "6.0.1",
"radix-ui": "1.6.7",
"react": "19.3.0",
"react-dom": "19.3.0",
"react-icons": "5.7.0",
"shadcn": "4.21.0",
"tailwind-merge": "3.7.0",
"tw-animate-css": "1.4.0"
},
"devDependencies": {
"@netlify/functions": "6.0.0",
"@netlify/vite-plugin": "3.0.1",
"@tailwindcss/typography": "0.5.20",
"@tailwindcss/vite": "4.3.3",
"@types/node": "26.5.1",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@vitejs/plugin-react": "6.1.1",
"concurrently": "10.0.5",
"cssnano": "9.0.4",
"cz-git": "1.14.0",
"globals": "17.12.0",
"netlify-cli": "27.7.0",
"oxfmt": "0.68.0",
"oxlint": "1.83.0",
"tailwindcss": "4.3.3",
"typescript": "npm:@typescript/typescript6@6.0.2",
"@typescript/native": "npm:typescript@7.0.2",
"vite": "8.3.0",
"vite-plugin-html": "3.2.2",
"vite-plugin-pwa": "1.3.0"
},
"overrides": {
"@fastify/static": "^10.1.3",
"@hono/node-server": "^2.1.1",
"@isaacs/brace-expansion": "^5.0.1",
"ajv": "^8.20.0",
"brace-expansion": "^5.0.9",
"braces": "^3.0.3",
"esbuild": "^0.28.2",
"fastify": "^5.12.3",
"file-type": "^22.0.2",
"glob": "^13.0.6",
"h3": "^1.15.11",
"micromatch": "^4.0.8",
"minimatch": "^10.2.6",
"qs": "^6.16.0",
"rollup": "^4.63.1",
"serialize-javascript": "^7.1.1",
"sharp": "^0.35.4",
"svgo": "^4.1.0",
"tar": "^7.5.22",
"toml": "^5.0.0",
"yauzl": "^3.4.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"allowScripts": {
"netlify-cli@27.5.0": true,
"esbuild@0.28.2": true,
"sharp@0.34.5": true,
"@parcel/watcher@2.5.6": true,
"unix-dgram@2.0.7": true,
"fsevents@2.3.3": true
}
}