-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.97 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
{
"name": "sourcesdb",
"author": "[email protected]",
"repository": "https://github.com/spotlightpa/sourcesdb.git",
"license": "MIT",
"scripts": {
"format": "yarn run format:eslint; yarn run format:prettier",
"format:eslint": "eslint --fix --ext .js --ignore-path .gitignore .",
"format:prettier": "prettier --ignore-path .gitignore --write '**/*.{html,css,js,yml}'",
"build:prod": "hugo --cleanDestinationDir && yarn run pagefind",
"build:stage": "hugo --cleanDestinationDir --environment staging --baseURL ${DEPLOY_PRIME_URL:-https://amplifycolorado.colabnews.co} && yarn run pagefind",
"pagefind-dev": "hugo --cleanDestinationDir && pagefind --site public --output-path static/pagefind",
"pagefind": "pagefind --site public",
"test": "yarn run test:eslint && yarn run test:prettier",
"test:eslint": "eslint --ext .js --ignore-path .gitignore .",
"test:prettier": "prettier --ignore-path .gitignore --check '**/*.{html,css,js,yml}'"
},
"dependencies": {
"@alpinejs/collapse": "^3.13.0",
"@alpinejs/focus": "^3.13.0",
"@alpinejs/ui": "^3.13.0-beta.0",
"@fortawesome/fontawesome-free": "^6.4.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fullhuman/postcss-purgecss": "^5.0.0",
"alpinejs": "^3.1.1",
"autoprefixer": "^10.2.6",
"pagefind": "^1.0.3",
"postcss": "^8.3.5",
"postcss-cli": "^10.1.0",
"tailwindcss": "^3.3.3"
},
"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.5.4"
}
}