-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-tailwindcss-netlify-starter",
"version": "0.1.0",
"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": ">= 22.x",
"npm": ">= 10.x"
},
"scripts": {
"build": "vite build && npm run lambda:build",
"clean": "rm -rf ./build && rm -rf ./lambda",
"dev": "vite serve --port 3000",
"lambda:build": "netlify-lambda build ./src/functions",
"lambda:serve": "netlify-lambda serve ./src/functions --config ./functions.config.js",
"prebuild": "npm run clean",
"preview": "vite preview",
"start": "concurrently 'npm run dev' 'npm run lambda:serve' --names '📦,💻' --prefix '[{name}] ' --kill-others",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"repository": {
"url": "https://github.com/mikesprague/react-tailwindcss-netlify-starter"
},
"author": {
"name": "Michael Sprague",
"email": "mikesprague@gmail.com"
},
"homepage": "",
"license": "MIT",
"dependencies": {
"@tailwindcss/typography": "0.5.16",
"@tailwindcss/vite": "4.0.3",
"@tippyjs/react": "4.2.6",
"cross-env": "7.0.3",
"daisyui": "5.0.0-beta.6",
"dayjs": "1.11.13",
"he": "1.2.0",
"jotai": "2.11.3",
"nanoid": "5.0.9",
"prop-types": "15.8.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "5.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/typography": "0.5.16",
"@vitejs/plugin-react-swc": "3.7.2",
"concurrently": "9.1.2",
"cz-git": "1.11.0",
"dotenv": "16.4.7",
"netlify-cli": "18.0.3",
"netlify-lambda": "2.0.16",
"stylelint": "16.14.1",
"stylelint-config-standard": "37.0.0",
"tailwindcss": "4.0.3",
"vite": "6.0.11",
"vite-plugin-html": "3.2.2",
"vite-plugin-pwa": "0.21.1"
},
"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"
}
},
"volta": {
"node": "22.13.1",
"npm": "10.9.2"
}
}