generated from 5t3ph/11ty-sass-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
48
49
50
{
"name": "oddbird-css",
"version": "1.1.0",
"description": "A public scratch-pad for OddBird to work on CSS & Sass",
"main": "index.html",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/styles:public/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/styles:public/css",
"build:eleventy": "eleventy",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/oddbird/css-sandbox"
},
"author": "OddBird",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.2",
"cssnano": "^5.0.12",
"cssremedy": "0.1.0-beta.2",
"eleventy-plugin-toc": "^1.1.0",
"github-slugger": "^1.3.0",
"js-yaml": "^3.14.0",
"markdown-it": "^12.0.2",
"markdown-it-anchor": "^6.0.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-mark": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.1.0",
"prism-themes": "^1.5.0"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@11ty/eleventy": "^2.0.0-beta.2",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"sass": "^1.50.1",
"typogr": "^0.6.8"
}
}