-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.68 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
{
"name": "gamue_de",
"version": "2.0.0",
"description": "private homepage powered by eleventy",
"type": "commonjs",
"scripts": {
"tailwind:dev": "postcss src/styles/main.css -o _site/styles/main.css --watch",
"tailwind:prod": "NODE_ENV=production postcss src/styles/main.css -o _site/styles/main.css",
"tailwind:prod-win": "set NODE_ENV=production& postcss src/styles/main.css -o _site/styles/main.css",
"build": "ENV_PROFILE=prod eleventy && npm run tailwind:prod",
"build:win": "set ENV_PROFILE=prod & eleventy & npm run tailwind:prod-win",
"serve": "eleventy --serve",
"start": "concurrently \"yarn run tailwind:dev\" \"yarn run serve\"",
"lint": "npx eslint",
"prettier": "npx prettier --check .",
"prettier:fix": "npm run prettier -- --write"
},
"repository": {
"type": "git",
"url": "https://github.com/gamue/gamue.github.io.git"
},
"author": "Johannes Ganzenmüller",
"homepage": "https://gamue.de",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"cssnano": "^7.0.6",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "^9.17.0",
"html-minifier": "^4.0.0",
"lodash": "^4.17.21",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-deflist": "^3.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "3.4.1",
"tailwindcss": "^3.4.15",
"tailwindcss-textshadow": "^2.1.3"
}
}