generated from 5t3ph/11ty-netlify-jumpstart
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "nwita",
"version": "0.0.1",
"description": "SSG with 11ty, SASS for NWITA.",
"main": "index.html",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass:public",
"watch:eleventy": "eleventy --serve --incremental",
"build:sass-site": "sass --no-source-map src/sass/style.scss public/style.css",
"build:sass": "npm-run-all --parallel build:sass-site",
"build:eleventy": "eleventy",
"postbuild": "postcss public/*.css -u autoprefixer cssnano -r --no-map",
"start": "cross-env ELEVENTY_ENV=dev npm-run-all build:sass --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all build:sass build:eleventy",
"lint": "stylelint 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss' --custom-syntax postcss-scss",
"lint:fix": "stylelint --fix 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss' --custom-syntax postcss-scss",
"bump": "npm --no-git-tag-version version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jason-vasilev/NWiTA.git"
},
"keywords": [],
"author": "WonderCoders",
"license": "ISC",
"bugs": {
"url": "https://github.com/jason-vasilev/NWiTA/issues"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.15",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-scss": "^4.0.3",
"sass": "^1.48.0",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0"
},
"browserslist": [
"> 0.5%",
"not IE 11"
],
"dependencies": {
"hbs": "^4.2.0"
}
}