-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.46 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
{
"name": "1loc",
"description": "What's your favorite JavaScript single LOC (line of code)",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "me@phuoc.ng",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://1loc.dev",
"keywords": [
"JavaScript",
"utility"
],
"repository": {
"type": "git",
"url": "https://github.com/phuocng/1loc"
},
"bugs": {
"url": "https://github.com/phuocng/1loc/issues"
},
"license": "MIT",
"scripts": {
"build": "npm run build:eleventy && npm run build:sass",
"build:sass": "sass styles/index.scss _site/styles/index.min.css --no-source-map --style compressed",
"build:eleventy": "npx @11ty/eleventy",
"deploy": "npm run build && netlify deploy --prod --dir=_site",
"format": "prettier --write \"**/*.+(json|md|scss)\"",
"start": "npm run watch:eleventy & npm run watch:sass",
"watch:eleventy": "npx @11ty/eleventy --serve --port=8081",
"watch:sass": "sass styles/index.scss _site/styles/index.min.css --no-source-map --style compressed --watch"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"html-minifier": "^4.0.0",
"prettier": "^2.7.1",
"sass": "^1.54.8"
},
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-fetch": "^3.0.0",
"markdown-it": "^13.0.1"
}
}