-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "tcc_concept1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass/style.scss public/css/style.css",
"build:eleventy": "NODE_ENV=production eleventy --pathprefix 'a11y-catalog'",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hargre/tcc_concept1.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hargre/tcc_concept1/issues"
},
"homepage": "https://github.com/Hargre/tcc_concept1#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"npm-run-all": "^4.1.5",
"sass": "^1.50.1"
},
"dependencies": {
"eleventy-plugin-nesting-toc": "^1.3.0",
"markdown-it": "^13.0.0",
"markdown-it-anchor": "^8.6.2"
}
}