forked from yhaefliger/YATAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "fschoenfeldt-website",
"version": "1.0.0",
"description": "Frederik Schönfeldt Website",
"scripts": {
"clean": "del _site",
"watch-css": "npx tailwindcss --postcss -i ./assets/css/styles.css -o ./src/_build/css/styles.css -w",
"watch-js": "npx esbuild ./assets/js/app.js ./assets/js/app_vacation.js ./assets/js/app_manager.js --outdir=./src/_build/js/ --bundle --target=es2018 --watch",
"start": "NODE_ENV=development concurrently \"node hash\" \"ELEVENTY_ENV=development eleventy --serve\" \"npm:watch-*\"",
"start:e2e": "NODE_ENV=development concurrently \"node hash\" \"ELEVENTY_ENV=development eleventy --serve --port 8081\" \"npm:watch-*\"",
"build-css": "npx tailwindcss --postcss -i ./assets/css/styles.css -o ./_site/css/styles.css --minify",
"build-js": "npx esbuild ./assets/js/app.js ./assets/js/app_vacation.js ./assets/js/app_manager.js --outdir=./_site/js/ --bundle --target=es2018 --minify",
"build-cv": "NODE_ENV=production npx playwright test ./tests/cv.print.spec.ts",
"prebuild": "npm run clean",
"build": "NODE_ENV=production concurrently \"npm:build-*\"",
"postbuild": "node hash && ELEVENTY_ENV=production eleventy",
"test:unit": "npx playwright test -c assets/js/",
"test:e2e": "npx playwright test",
"test": "pnpm test:unit && pnpm test:e2e"
},
"keywords": [
"eleventy",
"starter",
"TailwindCSS",
"Alpine.js"
],
"author": "Yann Haefliger<[email protected]>",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-upgrade-help": "^3.0.1",
"@axe-core/playwright": "4.9.1",
"@playwright/test": "1.46.1",
"@tailwindcss/typography": "^0.5.15",
"alpinejs": "^3.14.3",
"autoprefixer": "^10.4.20",
"chart.js": "^4.4.6",
"concurrently": "8.2.2",
"del-cli": "^5.1.0",
"eleventy-plugin-sharp": "^0.1.1",
"esbuild": "0.23.1",
"html-minifier": "^4.0.0",
"md5": "^2.3.0",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.15",
"vanilla-cookieconsent": "3.0.1",
"debounce": "^2.1.1"
},
"dependencies": {}
}