-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.09 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
{
"name": "11ty-theo-sass-postcss-example",
"version": "0.0.0",
"description": "This is an example for Eleventy to use Theo, Sass and postcss(autoprefixer and cssnano)",
"scripts": {
"build": "cross-env ELEVENTY_ENV=production eleventy",
"build:clean": "rimraf dist/*",
"build:minify:css": "cross-env NODE_ENV=production postcss src/_includes/assets/styles/main.css -o src/_includes/assets/styles/main.css",
"build:sass": "cross-env ELEVENTY_ENV=production node src/_sass/sass.11ty.js",
"build:css": "run-s build:sass build:minify:css",
"dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"start": "npm run dev"
},
"author": "Yuya Saito <hello@studiomohawk.com> (https://github.com/studiomohawk)",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"autoprefixer": "^9.7.6",
"cssnano": "^4.1.10",
"postcss": "^7.0.27",
"postcss-cli": "^7.1.1",
"postcss-load-config": "^2.1.0",
"sass": "^1.26.5",
"theo": "^8.1.5",
"rimraf": "^3.0.2",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"stylelint": "^13.3.3",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.17.1"
},
"browserslist": [
"defaults",
"IE 11",
"not IE_Mob 11"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,scss,yaml,md}": [
"prettier --write"
],
"*.{scss}": [
"stylelint --fix"
]
},
"main": ".eleventy.js",
"repository": {
"type": "git",
"url": "git+https://github.com/frontendweekly/11ty-theo-sass-postcss-example.git"
},
"keywords": [
"eleventy",
"theo",
"sass",
"postcss"
],
"bugs": {
"url": "https://github.com/frontendweekly/11ty-theo-sass-postcss-example/issues"
},
"homepage": "https://github.com/frontendweekly/11ty-theo-sass-postcss-example#readme"
}