-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 977 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
30
31
32
33
{
"name": "tinyreview.ninja",
"version": "1.0.0",
"description": "A tiny video game (and possibly more) review website built with 11ty.",
"scripts": {
"build": "npm run sass && eleventy",
"watch": "npm-run-all sass --parallel watch:*",
"watch:eleventy": "eleventy --serve --watch",
"watch:sass": "npm run sass -- --watch",
"sass": "sass --style=compressed src/scss/main.scss src/css/main.css",
"debug": "DEBUG=* eleventy --serve --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:bloqhead/tinyreview.ninja.git"
},
"author": {
"name": "Daryn St. Pierre",
"email": "daryn@hey.com",
"url": "https://daryn.codes/"
},
"homepage": "https://github.com/bloqhead/tinyreview.ninja",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-navigation": "^0.1.6",
"luxon": "^1.24.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"sass": "^1.26.10"
}
}