-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 1.1 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
{
"name": "freesideweb",
"author": "@closebracket <closebracket@pm.me> (https://github.com/closebracket)",
"publisher": "",
"homepage": "https://github.com/owner/project#readme",
"license": "ISC",
"version": "1.0.1",
"description": "Freeside web is an eleventy static site with tailwind and postcss integration to update the Freeside website",
"main": "index.js",
"dependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"autoprefixer": "^10.3.1",
"concurrently": "^6.2.1",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^0.9.0",
"@types/simple-icons": "^5.8.0",
"cross-env": "^7.0.3"
},
"scripts": {
"tailwind:process": "cross-env TAILWIND_MODE=watch postcss css/tailwind.scss --o public/assets/css/main.css --watch",
"tailwind:build": "postcss css/tailwind.scss --o public/assets/css/main.css",
"start": "concurrently \"npm run tailwind:process\" \"npm run serve\"",
"serve": "npx eleventy --serve",
"build": "npm run tailwind:build && npx @11ty/eleventy"
}
}