-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1009 Bytes
/
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
{
"name": "11ty-membership-site",
"version": "0.1.0",
"description": "An Eleventy theme for offering premium content to members. Requires Supabase and Netlify accounts.",
"main": "index.html",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass:public/css",
"build:eleventy": "eleventy",
"postbuild": "lightningcss --minify --targets '> 0.25%, not IE 11' public/css/*.css -o public/css/*.css",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/11ty-membership-site.git"
},
"author": "5t3ph",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.0-beta.1",
"lightningcss-cli": "^1.18.0",
"npm-run-all": "^4.1.5",
"sass": "^1.57.1"
},
"browserslist": [
"> 0.25%",
"not IE 11"
]
}