-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.18 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
{
"name": "mso.dev",
"version": "1.0.0",
"scripts": {
"start": "run-p start:dev:*",
"start:dev:eleventy": "set ELEVENTY_ENV=development&& npx gulp dev && npx @11ty/eleventy --serve --watch",
"start:dev:gulp": "npx gulp watch",
"start:debug": "run-p start:debug:*",
"start:debug:eleventy": "set ELEVENTY_ENV=development&& set DEBUG=Eleventy*&& npx gulp dev && npx @11ty/eleventy --serve --watch",
"start:debug:gulp": "npx gulp watch",
"start:prod": "npx gulp prod && npx @11ty/eleventy --serve -- watch",
"build:dev": "set ELEVENTY_ENV=development&& npx gulp dev && npx @11ty/eleventy",
"build:prod": "npx gulp prod && npx @11ty/eleventy",
"build:netlify": "npx gulp prod && ELEVENTY_ENV=netlify npx @11ty/eleventy"
},
"author": "Mustafa Oral",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-terser": "^2.1.0",
"hashids": "^2.2.10",
"html-minifier": "^4.0.0",
"linq": "^3.2.4",
"luxon": "^2.3.0",
"npm-run-all": "^4.1.5"
}
}