-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "@und-pohlen/und-css",
"version": "1.0.0-alpha.2",
"main": "src/_styles.scss",
"license": "MIT",
"repository": "git://github.com/und-pohlen/und-css.git",
"author": {
"name": "und Pohlen GmbH",
"email": "hallo@und-pohlen.de",
"url": "https://www.und-pohlen.de/"
},
"contributors": [
{
"name": "Lucas Nolte",
"email": "hello@lucas-nolte.com"
},
{
"name": "Max Pohlen",
"email": "max@und-pohlen.de"
}
],
"scripts": {
"clean": "rm -rf dist",
"serve": "browser-sync dist -w --no-notify",
"build": "cross-env NODE_ENV=production ELEVENTY_ENV=production run-s clean build:*",
"build:styles": "sass docs/assets:dist/css",
"build:eleventy": "eleventy --quiet",
"lint": "stylelint \"./src/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"dev": "cross-env NODE_ENV=development ELEVENTY_ENV=development npm-run-all clean build:styles --parallel start:* serve",
"start:styles": "sass --watch docs/assets:dist/css",
"start:eleventy": "eleventy --quiet --watch"
},
"peerDependencies": {
"sass": "^1.0.0"
},
"dependencies": {
"minireset.css": "^0.0.7"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"autoprefixer": "^10.4.8",
"browser-sync": "^2.26.12",
"browserslist": "^4.16.1",
"caniuse-api": "^3.0.0",
"caniuse-lite": "^1.0.30001179",
"cross-env": "^7.0.2",
"css-loader": "^6.7.1",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.0.1",
"sass": "^1.54.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^15.10.1",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-scss": "^4.3.0"
}
}