-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 2.42 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
{
"name": "poor-richard",
"version": "0.0.1",
"description": "Static website for Spotlight PA",
"repository": "[email protected]:spotlightpa/poor-richard.git",
"author": "Spotlight PA",
"license": "MIT",
"scripts": {
"test": "yarn run test:eslint; yarn run test:prettier; yarn run test:html",
"format": "yarn run format:eslint; yarn run format:prettier; yarn run format:html",
"test:eslint": "eslint --ext .js --ignore-path .gitignore .",
"format:eslint": "eslint --fix --ext .js --ignore-path .gitignore .",
"test:prettier": "prettier --ignore-path .gitignore --check '**/*.{scss,css,js,yml}'",
"format:prettier": "prettier --ignore-path .gitignore --write '**/*.{scss,css,js,yml}'",
"test:html": "prettier --ignore-path prettier-html-ignore.rc --check 'layouts/**/*.html'",
"format:html": "prettier --ignore-path prettier-html-ignore.rc --write 'layouts/**/*.html'",
"build:stage": "hugo --environment staging --baseURL ${DEPLOY_PRIME_URL:-https://www.spotlightpa.org}",
"build:prod": "hugo --cleanDestinationDir",
"start:noreload": "hugo server -p 39019 --disableLiveReload",
"start:full": "hugo server -p 39019 --disableFastRender",
"start": "hugo server -p 39019"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.1",
"@alpinejs/focus": "^3.12.3",
"@alpinejs/intersect": "^3.12.3",
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@fortawesome/fontawesome-free": "^6.4.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@newswire/frames": "^1.0.0",
"alpinejs": "^3.12.3",
"autoprefixer": "^10.4.14",
"bulma": "^0.9.3",
"journalize": "^2.5.1",
"postcss": "^8.4.31",
"postcss-cli": "^11.0.0",
"purgecss": "^5.0.0",
"smoothscroll-polyfill": "^0.4.4",
"tailwindcss": "3.4.13"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^3.0.3",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}