-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 947 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 947 Bytes
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
{
"name": "mjawn.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "npx rimraf ./dist",
"tailwind": "npx tailwindcss -i ./src/assets/styles/styles.css -o ./dist/assets/styles/styles.css --minify",
"tailwind:watch": "npm run tailwind -- --watch",
"prettier": "npx prettier --write \".\" \"./**/*.webc\"",
"build": "npm run clean & npx @11ty/eleventy & npm run tailwind & npm run prettier",
"serve": "npm run build && npx concurrently \"npx @11ty/eleventy --serve\" \"npm run tailwind:watch\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^3.0.0-alpha.19",
"@11ty/eleventy-plugin-webc": "^0.11.0",
"concurrently": "^9.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.6",
"rimraf": "^6.0.1",
"tailwindcss": "^3.3.1"
}
}