forked from spotlightpa/poor-richard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.31 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
{
"name": "poor-richard",
"version": "0.0.1",
"description": "Static website for Spotlight PA",
"repository": "git@github.com:spotlightpa/poor-richard.git",
"author": "Spotlight PA",
"license": "MIT",
"scripts": {
"test": "yarn run test:eslint && yarn run test:prettier",
"format": "yarn run format:eslint; yarn run format:prettier",
"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,js,yml}'",
"format:prettier": "prettier --ignore-path .gitignore --write '**/*.{scss,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/focus": "^3.9.1",
"@alpinejs/intersect": "^3.9.1",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@newswire/frames": "^1.0.0",
"alpinejs": "^3.9.1",
"autoprefixer": "^10.4.4",
"bulma": "^0.9.3",
"ga-lite": "^2.1.6",
"journalize": "^2.5.1",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": ">=2.25.4",
"eslint-plugin-node": ">=7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": ">=6.0.0",
"eslint-plugin-standard": ">=5.0.0",
"prettier": "^2.6.0",
"prettier-plugin-go-template": "^0.0.11",
"prettier-plugin-tailwindcss": "^0.1.8"
}
}