-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.82 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
{
"name": "eleventy-parcel",
"version": "2.0.0",
"description": "",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "run-s start:remove start:watch",
"start:remove": "node onStart.mjs",
"start:watch": "run-p watch:eleventy watch:parcel bs:start",
"watch:eleventy": "npx @11ty/eleventy --watch",
"watch:parcel": "run-p watch:css watch:js watch:images",
"watch:css": "parcel watch src/css/styles.scss",
"watch:js": "parcel watch src/js/index.js",
"watch:images": "parcel watch src/images/**/*",
"build": "run-s clean prod:parcel hash prod:eleventy",
"svg": "svg-sprite-generate -d src/icons -o src/_includes/partials/sprite.svg",
"prod:eleventy": "npx @11ty/eleventy",
"prod:parcel": "run-p build:css build:js build:images",
"build:css": "parcel build src/css/styles.scss",
"build:js": "parcel build src/js/index.js",
"build:images": "parcel build src/images/**/*",
"bs:start": "browser-sync start --config bs-config.js",
"clean": "rm -rf dist",
"hash": "node onBuild.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/packager-xml": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"@parcel/transformer-xml": "^2.12.0",
"browser-sync": "^3.0.2",
"md5": "^2.3.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"parcel-plugin-imagemin": "^4.0.2",
"prettier": "^3.2.5",
"sass": "^1.74.1",
"stylelint": "^16.3.1",
"stylelint-prettier": "^5.0.0",
"svg-sprite-generator": "^0.0.7"
},
"dependencies": {
"dotenv": "^16.4.5"
}
}