-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
32 lines (32 loc) · 964 Bytes
/
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
{
"name": "eleventy-with-vite",
"version": "1.0.0",
"description": "A demo or template for integrating a Vite build with Eleventy",
"author": "Fotis Papadogeorgopoulos ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/fpapado/eleventy-with-vite"
},
"bugs": {
"url": "https://github.com/fpapado/eleventy-with-vite"
},
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@vitejs/plugin-legacy": "^1.3.2",
"concurrently": "^6.0.0",
"serve": "^11.3.2",
"vite": "^2.1.3"
},
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:eleventy": "eleventy --serve",
"dev:vite": "vite",
"build": "npm run build:vite && npm run build:eleventy",
"build:eleventy": "NODE_ENV=production eleventy",
"build:vite": "NODE_ENV=production vite build",
"prod": "NODE_ENV=production npm run build && serve _site"
}
}