forked from pactus-project/pactus.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.1 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
{
"name": "pactus.org",
"version": "0.1.0",
"description": "Pactus Blockchain",
"repository": "https://github.com/pactus-project/pactus.org",
"license": "MIT",
"scripts": {
"htmlproofer:setup": "gem install html-proofer",
"htmlproofer": "htmlproofer --swap-urls 'http\\://localhost\\:4000:' --ignore-status-codes 999,429 --enforce-https false --ignore-urls /cdn./,/discord.gg/,/t.me/,/x.com/,/github.com/,/ietf.org/ ./_site",
"prettier": "prettier --bracket-same-line true --html-whitespace-sensitivity ignore --end-of-line lf --print-width 120 --write ./website",
"lint:md:setup": "gem install mdl",
"lint:md": "mdl --style=.mdlrc.rb ./website",
"lint:yml:setup": "pip install --upgrade yamllint",
"lint:yml": "yamllint ./website",
"exif": "for i in $(find ./website -name '*.png' -o -name '*.gif' -o -name '*.jpg' -o -name '*.jpeg'); do echo \"Processing $i\"; exiftool -all= \"$i\"; done"
},
"optionalDependencies": {
"prettier": "^3.2.5"
},
"devDependencies": {
"bootstrap": "5.3.2"
},
"dependencies": {
"prettier": "^3.2.5",
"yarn": "^1.22.22"
}
}