-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.09 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.09 KB
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
{
"name": "portfolio-eleventy",
"version": "1.0.0",
"description": "My portfolio based on TEA Stack.",
"main": "index.js",
"config": {
"css_in": "src/_styles/_main.css",
"css_out": "dist/assets/main.bundle.css",
"js_in": "src/_scripts/_main.js",
"js_out": "dist/assets/main.bundle.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production node esbuild.config.js && npm run build:11ty",
"build:11ty": "eleventy --quiet",
"clean": "rm -rf dist && rm -rf .cache",
"dev": "export NODE_TLS_REJECT_UNAUTHORIZED=0 && cross-env NODE_ENV=development node esbuild.config.js & npm run dev:11ty",
"dev:11ty": "eleventy --serve --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdevsuperfast/portfolio-eleventy.git"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore"
},
"keywords": [
"tailwind",
"eleventy",
"alpine"
],
"author": "Rotsen Mark Acob",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdevsuperfast/portfolio-eleventy/issues"
},
"homepage": "https://github.com/webdevsuperfast/portfolio-eleventy#readme",
"dependencies": {
"@11ty/eleventy-img": "^6.0.4",
"@tailwindcss/cli": "^4.1.18",
"alpinejs": "^3.15.8",
"axios": "^1.13.5",
"axios-cache-interceptor": "^1.11.4",
"cssnano": "^7.1.2",
"gsap": "^3.14.2",
"https": "^1.0.0",
"path": "^0.12.7",
"postcss": "^8.5.6",
"postcss-nested-ancestors": "^3.0.0",
"sanitize-html": "^2.17.1",
"vanilla-lazyload": "^19.1.3",
"venobox": "^2.1.8"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"esbuild": "^0.27.3",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"wrangler": "^4.65.0"
},
"type": "module"
}