-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.74 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
{
"name": "sourcesdb",
"author": "webmaster@spotlightpa.org",
"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 **/*.{css,js,yml}",
"build:prod": "hugo version && hugo --cleanDestinationDir && yarn run searchindex",
"build:stage": "hugo version && hugo --environment staging --baseURL ${DEPLOY_PRIME_URL:-https://www.spotlightpa.org}",
"searchindex": "GOBIN=$(pwd)/bin go install github.com/spotlightpa/algolia-indexer@latest && ./bin/algolia-indexer -src ./public/searchindex.json -verbose",
"test": "yarn run test:eslint && yarn run test:prettier",
"test:eslint": "eslint --ext .js --ignore-path .gitignore .",
"test:prettier": "prettier --ignore-path .gitignore --check **/*.{css,js,yml}"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fullhuman/postcss-purgecss": "^4.0.3",
"alpinejs": "^3.1.1",
"autoprefixer": "^10.2.6",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.2.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.3.1"
}
}