-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 852 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 852 Bytes
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
{
"name": "wiilink-store",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"start-backend": "cd backend && node index.js",
"dev:all": "concurrently \"npm run dev\" \"npm run start-backend\"",
"install:all": "concurrently \"npm install\" \"cd backend && npm install\""
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^17.0.0",
"@contentful/rich-text-plain-text-renderer": "^17.0.0",
"@tailwindcss/vite": "^4.1.3",
"astro": "^5.6.1",
"astro-icon": "^1.1.5",
"contentful": "^11.5.13",
"dotenv": "^16.4.7",
"tailwindcss": "^4.1.3"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.35",
"@iconify-json/simple-icons": "^1.2.31",
"concurrently": "^9.1.2"
}
}