generated from dustin-jw/eleventy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 864 Bytes
/
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
{
"name": "owasp-top-ten",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm run clean",
"prebuild": "npm run clean",
"start": "run-p eleventy:dev sass:dev",
"build": "run-s eleventy:build sass:build",
"eleventy:dev": "eleventy --serve",
"eleventy:build": "eleventy",
"sass:dev": "sass --watch --embed-source-map src/scss:dist",
"sass:build": "sass --no-source-map --style=compressed src/scss:dist",
"clean": "rm -rf dist",
"lint": "run-s lint:css",
"lint:css": "stylelint 'src/scss/**/*.scss' --color --formatter verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"npm-run-all": "^4.1.5",
"sass": "^1.58.0",
"stylelint": "^14.16.1",
"stylelint-config-standard-scss": "^6.1.0"
}
}