generated from 5t3ph/11ty-netlify-jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 226
/
package.json
65 lines (65 loc) · 2.79 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
{
"name": "moderncss-styles",
"version": "1.1.0",
"description": "A modern CSS showcase styled by community contributions.",
"main": "index.js",
"scripts": {
"scss:main": "sass --no-source-map src/sass/main-stage.scss src/styles/css/main-stage.css",
"scss:showcase": "sass --no-source-map src/sass/showcase.scss src/styles/css/showcase.css",
"scss:social": "sass --no-source-map src/sass/social-previews.scss src/_generate/social-previews.css",
"scss": "npm run scss:main ; npm run scss:showcase ; npm run scss:social",
"css": "postcss src/styles/css/*.css -d public/styles/css -u autoprefixer --no-map",
"watch:eleventy": "eleventy --serve",
"watch:main": "sass --no-source-map --watch src/sass/main-stage.scss src/styles/css/main-stage.css",
"watch:showcase": "sass --no-source-map --watch src/sass/showcase.scss src/styles/css/showcase.css",
"watch:social": "sass --no-source-map --watch src/sass/social-previews.scss src/_generate/social-previews.css",
"watch": "npm run watch:main & npm run watch:showcase & npm run watch:social & ELEVENTY_ENV=development npm run watch:eleventy",
"start": "npm run scss ; npm run stylesheets ; npm run watch",
"start:dev": "npm run scss ; npm run watch",
"build": "npm run scss ; npm run stylesheets ; npm run css ; ELEVENTY_ENV=production eleventy ; prettier --write 'public/source-files/*.html'",
"lint": "stylelint 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss'",
"lint:fix": "stylelint --fix 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss'",
"stylesheets": "node functions/stylesdata.js ; node functions/stylesheets.js",
"bump": "npm --no-git-tag-version version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/stylestage.git"
},
"keywords": [],
"author": "5t3ph",
"license": "ISC",
"bugs": {
"url": "https://github.com/5t3ph/stylestage/issues"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0-canary.33",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"emoji-regex": "^10.2.1",
"fast-glob": "^3.2.12",
"luxon": "^3.2.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"node-fetch": "^3.3.0",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.3.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@netlify/functions": "^1.4.0",
"@sparticuz/chromium": "109.0.6",
"puppeteer-core": "19.5.2"
}
}