-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "palindrome",
"version": "1.0.0",
"description": "Personal boilerplate for Eleventy projects",
"main": "index.js",
"scripts": {
"sass": "npx sass --style=compressed src/assets/sass/style.scss src/assets/css/style.css",
"watch:sass": "npm run sass -- --watch",
"watch:eleventy": "npx @11ty/eleventy --serve",
"start": "npm-run-all sass --parallel watch:*",
"build": "npx @11ty/eleventy",
"checks": "html-validate . && eslint .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"serve": "npx @11ty/eleventy --serve",
"validate": "html-validate ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/melanierichards/palindrome.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/melanierichards/palindrome/issues"
},
"homepage": "https://github.com/melanierichards/palindrome#readme",
"devDependencies": {
"@11ty/eleventy-navigation": "^0.3.5",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"html-validate": "^4.9.0"
},
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"npm-run-all": "^4.1.5",
"sass": "^1.49.9"
}
}