-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "ng-11ty-frontend",
"version": "1.0.0",
"description": "The final 11ty frontend for Nrityagram.",
"main": "index.html",
"scripts": {
"watch:sass": "sass --watch src/sass:_site/css",
"build:sass": "sass src/sass:_site/css",
"watch:eleventy": "npx @11ty/eleventy --serve",
"build:eleventy": "npx @11ty/eleventy",
"debug:eleventy": "DEBUG=* npx @11ty/eleventy",
"start": "npm-run-all build:clean build:sass --parallel watch:*",
"quickstart": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy",
"debug": "npm-run-all debug:*",
"build:clean": "rm -rf _site/"
},
"keywords": [],
"author": {
"name": "Amrita Chanda",
"email": "[email protected]",
"url": "https://vodkarani.codes/"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@sanity/block-content-to-markdown": "^0.0.5",
"@sanity/client": "^4.0.1",
"luxon": "^3.3.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"npm-run-all": "^4.1.5",
"sass": "^1.62.1"
},
"engines": {
"node": ">=0.10.3 <21",
"npm": ">=1.0.20"
},
"dependencies": {
"@sanity/image-url": "^1.0.2",
"dotenv": "^16.4.1",
"get-youtube-id": "^1.0.1",
"netlify-plugin-cache": "^1.0.3"
}
}