-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.46 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
58
59
60
61
{
"name": "open-terms-archive-website",
"version": "0.0.1",
"description": "The Open Terms Archive website",
"homepage": "https://github.com/OpenTermsArchive/opentermsarchive.org#readme",
"bugs": {
"url": "https://github.com/OpenTermsArchive/opentermsarchive.org/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenTermsArchive/opentermsarchive.org.git"
},
"license": "EUPL v1.2",
"author": "Open Terms Archive",
"scripts": {
"prebuild": "node scripts/fetch-uptime.js",
"build": "hugo --minify --cleanDestinationDir --ignoreCache",
"test": "npm run lint:markdown && npm run lint:css && npm run lint:js && npm run lint:html && npm run test:links && npm run test:html && npm run test:e2e",
"pretest:links": "npm run build",
"test:links": "linkinator ./public --recurse --verbosity error",
"pretest:html": "npm run build",
"test:html": "html-validate ./public",
"test:e2e": "node test/cypress/e2e/index.js",
"prestart:dev": "node scripts/fetch-uptime.js",
"start:dev": "hugo serve --watch --logLevel debug --disableFastRender --printI18nWarnings",
"prestart:ci": "node scripts/fetch-uptime.js",
"start:ci": "hugo serve --logLevel error --port 1313",
"prestart:preview": "node scripts/fetch-uptime.js",
"start:preview": "hugo --gc --minify -b $DEPLOY_PRIME_URL",
"lint:markdown": "markdownlint *.md content/**/*.md",
"lint:css": "stylelint \"themes/opentermsarchive/assets/css/**/*.css\"",
"lint:js": "eslint themes/opentermsarchive/assets/js/ test/**/*.js",
"lint:html": "eslint themes/opentermsarchive/layouts/**/*.html -c .htmleslintrc.yaml"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.23.1",
"@html-eslint/parser": "^0.23.0",
"@stylistic/stylelint-config": "^1.0.1",
"all-contributors-cli": "^6.26.1",
"cypress": "^13.7.3",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-json-format": "^2.0.1",
"html-validate": "^8.12.0",
"linkinator": "^6.0.4",
"lucide": "^0.344.0",
"markdownlint-cli": "^0.39.0",
"minireset.css": "^0.0.7",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.1",
"postcss-mixins": "^9.0.4",
"postcss-preset-env": "^9.4.0",
"simple-icons": "^13.17.0",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-standard": "^36.0.0",
"wait-on": "^7.2.0"
}
}