-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.75 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
{
"name": "css-irl-eleventy",
"version": "1.2.0",
"description": "",
"source": [
"src/css/styles.scss",
"src/js/scripts.js",
"src/js/service-worker.js"
],
"scripts": {
"start": "run-s start:remove build:images watch:eleventy",
"start:remove": "node onStart.mjs",
"watch:eleventy": "npx @11ty/eleventy --serve --incremental",
"watch:parcel": "parcel watch --no-cache",
"build": "run-s clean build:parcel build:images hash build:eleventy",
"svg": "svg-symbol-sprite -i src/icons -o src/_includes/partials/sprite.svg -p ''",
"build:eleventy": "npx @11ty/eleventy",
"build:parcel": "parcel build --no-cache",
"build:images": "parcel build 'src/images/*' --no-cache",
"clean": "rm -rf dist",
"hash": "node onBuild.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-server-browsersync": "^1.0.2",
"@parcel/transformer-sass": "^2.11.0",
"@parcel/transformer-webmanifest": "^2.11.0",
"browser-sync": "^3.0.2",
"eleventy-plugin-webmentions": "^2.1.0",
"eleventy-plugin-youtube-embed": "^1.10.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"md5": "^2.3.0",
"netlify-cli": "^17.15.5",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"parcel": "^2.11.0",
"path-browserify": "^1.0.1",
"prettier": "^3.2.4",
"process": "^0.11.10",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"svg-symbol-sprite": "^1.4.1"
},
"packageManager": "npm@8.1.2",
"dependencies": {
"body-scroll-lock": "^4.0.0-beta.0",
"dotenv": "^16.3.1",
"focus-trap": "^7.5.4"
}
}