-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "acearchive-lgbt",
"version": "0.1.0",
"private": true,
"description": "The Ace Archive website",
"homepage": "https://acearchive.lgbt",
"bugs": {
"url": "https://github.com/acearchive/acearchive.lgbt/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/acearchive/acearchive.lgbt"
},
"author": {
"name": "Frawley",
"email": "frawley@duck.com",
"url": "https://github.com/frawleyskid"
},
"license": "MIT",
"browserslist": [
"defaults"
],
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"prestart": "npm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"build:preview": "npm run build -D -F",
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json node_modules ",
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint \"assets/**/*.{js,jsx,ts,tsx}\"",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"",
"server": "exec-bin node_modules/.bin/hugo/hugo server",
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"@github/clipboard-copy-element": "^1.1.2",
"@types/bootstrap": "^5.2.6",
"@types/mime": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"auto-changelog": "^2.3.0",
"autoprefixer": "^10.4",
"bootstrap": "^5.2.2",
"bootstrap-icons": "^1.10.2",
"classnames": "^2.3.2",
"clipboard": "^2.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"exec-bin": "^1.0.0",
"flexsearch": "^0.7.21",
"formik": "^2.2.9",
"highlight.js": "^11.4",
"hugo-installer": "^4.0.1",
"instant.page": "^5.1",
"iso-639-1": "^2.1.15",
"js-yaml": "^4.1.0",
"lazysizes": "^5.3",
"markdownlint-cli": "^0.31.1",
"mime": "^3.0.0",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"prettier": "^2.6.2",
"purgecss-whitelister": "^2.4.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"showdown": "^2.1.0",
"shx": "^0.3.3",
"stylelint": "^14.5.1",
"stylelint-config-standard": "^25.0.0",
"yup": "^0.32.11"
},
"otherDependencies": {
"hugo": "0.100.1"
},
"dependencies": {
"@stoplight/elements": "^8.0.5"
}
}