-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
85 lines (85 loc) · 2.83 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "swup-docs",
"version": "1.0.0",
"description": "",
"private": true,
"license": "ISC",
"scripts": {
"watch:assets": "webpack --watch --mode=development --stats minimal",
"watch:eleventy": "npx @11ty/eleventy --serve --quiet --incremental",
"watch": "concurrently npm:watch:*",
"build:eleventy": "npx @11ty/eleventy --quiet",
"build:assets": "webpack --mode=production --progress --stats minimal",
"build": "npm run build:eleventy && npm run build:assets",
"clean": "rm -rf _site",
"lint": "prettier 'src/' --check",
"format": "prettier 'src/' --write",
"test": "start-server-and-test test:start http://127.0.0.1:7987 test:run",
"test:serve": "http-server --port 7987 --silent _site",
"test:start": "SITE_URL=http://127.0.0.1:7987 npm run build && npm run test:serve",
"test:run": "swup validate --parallel --sitemap=_site/sitemap.xml"
},
"dependencies": {
"@alpinejs/focus": "^3.12.0",
"@alpinejs/persist": "^3.12.0",
"@swup/a11y-plugin": "^4.0.0",
"@swup/body-class-plugin": "^3.0.0",
"@swup/debug-plugin": "^4.0.0",
"@swup/fade-theme": "^2.0.0",
"@swup/forms-plugin": "^3.3.0",
"@swup/ga-plugin": "^2.0.0",
"@swup/overlay-theme": "^2.0.0",
"@swup/preload-plugin": "^3.0.0",
"@swup/scroll-plugin": "^3.0.0",
"@swup/slide-theme": "^2.0.0",
"alpinejs": "^3.12.0",
"gsap": "^3.11.5",
"modern-normalize": "^1.1.0",
"swup": "^4.3.4",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@sindresorhus/slugify": "^1.1.0",
"@swup/cli": "^5.0.3",
"autoprefixer": "^10.4.2",
"browserslist": "^4.21.4",
"child_process": "^1.0.2",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.6.0",
"debug": "^4.3.4",
"eleventy-plugin-toc": "^1.1.5",
"esbuild-loader": "^2.18.0",
"esbuild-plugin-browserslist": "^0.6.0",
"feather-icons": "^4.29.0",
"html-entities": "^2.4.0",
"http-server": "^14.1.1",
"jsdom": "^22.1.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-shiki-extra": "^0.1.5",
"markdown-it-video": "^0.6.3",
"mini-css-extract-plugin": "^2.5.3",
"minimist": "^1.2.5",
"pagefind": "^1.1.1",
"postcss": "^8.4.31",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.7.1",
"sass": "^1.62.0",
"sass-loader": "^12.6.0",
"shiki": "^0.14.1",
"start-server-and-test": "^2.0.3",
"ts-loader": "^9.2.6",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2",
"webpack-livereload-plugin": "^3.0.2",
"webpack-remove-empty-scripts": "^0.7.3"
},
"prettier": "@swup/prettier-config"
}