-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 957 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 957 Bytes
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
{
"name": "ng-landing",
"version": "2.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"watch:sass": "sass --watch src/_sass/style.scss:_site/assets/css/style.css",
"build:sass": "sass src/_sass/style.scss:_site/assets/css/style.css",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"clean": "rm -rf _site",
"dev": "npm run start",
"start": "npm-run-all clean build:sass --parallel watch:*",
"build": "npm-run-all clean build:*",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "NEXTGRES landing site",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"markdown-it-attrs": "^4.1.6",
"npm-run-all": "^4.1.5",
"sass": "1.77.6"
},
"devDependencies": {
"@11ty/eleventy-plugin-rss": "^1.2.0",
"eleventy-xml-plugin": "^0.1.0"
}
}