-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
{
"name": "VLCTechHub-site",
"version": "1.0.0",
"main": "build.js",
"repository": "[email protected]:VLCTechHub/VLCTechHub-site.git",
"license": "MIT",
"dependencies": {
"@metalsmith/collections": "1.1.0",
"@metalsmith/permalinks": "2.3.0",
"ansi-regex": "6.0.1",
"feed": "4.2.2",
"git-rev-sync": "3.0.1",
"json-schema": "0.4.0",
"jstransformer-nunjucks": "1.0.0",
"marked": "4.0.10",
"metalsmith": "2.3.0",
"metalsmith-data-loader": "1.1.5",
"metalsmith-in-place": "4.4.2",
"metalsmith-layouts": "2.3.1",
"metalsmith-markdown": "1.3.0",
"metalsmith-pagination": "1.5.0",
"metalsmith-sass": "2.0.0",
"metalsmith-uglify": "2.4.0",
"metalsmith-writemetadata": "0.4.5",
"moment-timezone": "0.5.34",
"node-fetch": "2.6.7",
"node-sass": "7.0.1",
"nunjucks": "3.2.3",
"nunjucks-moment-timezone-filter": "1.0.3",
"sanitize-html": "2.6.1",
"shelljs": "0.8.5",
"tar": "6.1.11",
"transliteration": "2.2.0",
"trim-newlines": "4.0.2"
},
"scripts": {
"build": "node build.js",
"lint": "./node_modules/eslint/bin/eslint.js --ext .njk,.js data/ templates/ lib/",
"prettylint": "./node_modules/prettylint/bin/cli.js \"data/**/*.{md,scss,js,json,yaml}\" \"lib/**/*.js\"",
"report-published": "node report-published.js",
"serve": "serve -n -p 8080 dist/"
},
"husky": {
"hooks": {
"pre-commit": "echo \"\r\nRunning pre-commit linters...\r\nHINT: To automatically fix any offense run 'yarn run lint --fix' or 'yarn run prettylint --fix' on the command line before you commit.\r\n\" && yarn run lint && yarn run prettylint"
}
},
"devDependencies": {
"all-contributors-cli": "6.20.0",
"eslint": "8.7.0",
"eslint-plugin-html": "6.2.0",
"husky": "7.0.4",
"prettier": "2.5.1",
"prettylint": "1.0.0",
"serve": "13.0.2"
}
}