-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.8 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": "viz-redistricting-2020",
"version": "0.0.1",
"author": "Spotlight PA",
"license": "MIT",
"private": true,
"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,html}'",
"build:stage": "./build.sh && hugo --environment staging --baseURL ${DEPLOY_PRIME_URL:-https://viz-redistricting-2020.data.spotlightpa.org}",
"build:prod": "./build.sh && hugo --cleanDestinationDir",
"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,html}'"
},
"dependencies": {
"@babel/core": ">=7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.4",
"@fortawesome/fontawesome-free": "^6.2.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@newswire/frames": "^0.3.1",
"alpinejs": "^3.6.1",
"autoprefixer": "^10.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": ">=2.25.3",
"eslint-plugin-node": ">=7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": ">=5.1.1",
"eslint-plugin-standard": ">=5.0.0",
"ga-lite": "2.1.6",
"journalize": "^2.5.0",
"leaflet": "^1.7.1",
"postcss": "^8.4.4",
"postcss-cli": "^10.0.0",
"prettier": "^2.5.0",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"prettier-plugin-go-template": "^0.0.13",
"prettier-plugin-tailwindcss": "^0.1.13"
}
}