generated from 11ty/eleventy-base-blog
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
74 lines (74 loc) · 2.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "yetty",
"version": "1.0.0",
"description": "Yet another Eleventy starter kit for my (& your) new projects.Built with accessibility and performance in mind.",
"scripts": {
"eleventy:dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"eleventy:prod": "cross-env ELEVENTY_ENV=production eleventy",
"prebuild": "npm run lint:sass && NODE_ENV=production npm run sass:prod && npm run scripts && npm run modernizr",
"build": "npm run clean && npm run eleventy:prod",
"postbuild": "npm run postcss",
"predev": "npm run sass:dev && npm run modernizr",
"dev": "concurrently 'npm run eleventy:dev' 'npm run sass:watch'",
"start": "npm run dev",
"debug": "DEBUG=* eleventy",
"postcss": "postcss dist/assets/styles/main.css --replace",
"sass:prod": "node-sass src/assets/styles/scss/ --output src/assets/styles/ --output-style compressed",
"sass:dev": "node-sass src/assets/styles/scss/ --output src/assets/styles/ --source-map true --source-map-contents true",
"sass:watch": "node-sass src/assets/styles/scss/main.scss --output src/assets/styles/ --source-map true --source-map-contents true -w",
"lint:sass": "stylelint --fix 'src/assets/styles/scss/**/*.scss' 'src/assets/styles/scss/**/**/*.scss' 'src/assets/styles/scss/**/**/**/*.scss'",
"scripts": "webpack --mode=production",
"clean": "rimraf dist",
"modernizr": "npx modernizr -c .modernizrrc.json -d src/assets/scripts/vendors/modernizr.min.js -u",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/ygoex/yetty.git"
},
"author": {
"name": "Yolanda Gorriz Exposito",
"email": "[email protected]",
"url": "https://ygoex.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ygoex/yetty/issues"
},
"homepage": "https://github.com/ygoex/yetty#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"@fullhuman/postcss-purgecss": "^4.0.3",
"autoprefixer": "^10.4.0",
"clean-css": "latest",
"concurrently": "^6.3.0",
"critical": "^4.0.1",
"cross-env": "^7.0.3",
"eleventy-critical-css": "^1.1.0",
"eleventy-plugin-pwa": "^1.0.8",
"eleventy-plugin-reading-time": "^0.0.1",
"html-minifier": "^4.0.0",
"luxon": "^2.0.2",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.4.1",
"markdown-it-link-attributes": "^3.0.0",
"modernizr": "^3.11.8",
"node-sass": "^6.0.1",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.1",
"rimraf": "^3.0.2",
"stylelint": "^14.0.1",
"stylelint-config-standard-scss": "^2.0.0",
"stylelint-scss": "^4.0.0",
"stylelint-order": "^5.0.0",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"mermaid": "^8.13.3"
}
}