2021-05-19 18:19:38 -04:00
|
|
|
{
|
|
|
|
"name": "justice40-tool",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"private": true,
|
|
|
|
"description": "Justice40 Tool",
|
|
|
|
"author": "Nat Hillard",
|
|
|
|
"keywords": [
|
|
|
|
"gatsby"
|
|
|
|
],
|
2021-06-03 15:03:10 -04:00
|
|
|
"license": "CC0-1.0",
|
2021-05-19 18:19:38 -04:00
|
|
|
"scripts": {
|
|
|
|
"develop": "gatsby develop",
|
|
|
|
"start": "gatsby develop",
|
2021-05-25 12:07:45 -04:00
|
|
|
"build": "gatsby build --prefix-paths",
|
2021-05-19 18:19:38 -04:00
|
|
|
"serve": "gatsby serve",
|
2021-05-21 13:05:27 -04:00
|
|
|
"clean": "gatsby clean",
|
2021-07-09 10:56:38 -04:00
|
|
|
"cy:open": "CYPRESS_REMOTE_DEBUGGING_PORT=9222 cypress open",
|
2021-06-02 20:53:22 -04:00
|
|
|
"cy:run": "cypress run",
|
2021-05-26 10:01:05 -04:00
|
|
|
"test": "jest",
|
2021-06-03 15:03:10 -04:00
|
|
|
"licenses": "license-checker --production --onlyAllow 'Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;ISC;MIT;Public Domain;Unlicense;UNLICENSED;ODC-By-1.0;WTFPL;MPL-2.0'",
|
2021-06-02 20:53:22 -04:00
|
|
|
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
|
|
|
|
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
|
2021-05-26 10:01:05 -04:00
|
|
|
"test:update": "npm test -- -u",
|
2021-05-25 12:07:45 -04:00
|
|
|
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
|
2021-05-25 16:21:21 -04:00
|
|
|
"lint": "eslint './src/**/*.{ts,tsx}' --ignore-pattern node_modules/ --ignore-pattern public --ignore-pattern *scss.d.ts",
|
|
|
|
"lint:fix": "npm run lint -- --quiet --fix",
|
2021-08-10 09:45:45 -07:00
|
|
|
"intl:extract": "formatjs extract 'src/**/*.tsx' --out-file src/intl/en.json",
|
2021-07-15 13:00:15 -07:00
|
|
|
"intl:compile-en": "formatjs compile src/intl/en.json --ast --out-file compiled-lang/en.json"
|
2021-05-19 18:19:38 -04:00
|
|
|
},
|
2021-05-19 18:55:10 -04:00
|
|
|
"devDependencies": {
|
2021-05-21 13:05:27 -04:00
|
|
|
"@formatjs/cli": "^4.2.15",
|
2021-06-02 20:53:22 -04:00
|
|
|
"@testing-library/cypress": "^7.0.6",
|
|
|
|
"@testing-library/jest-dom": "^5.12.0",
|
|
|
|
"@testing-library/react": "^11.2.7",
|
2021-06-30 07:08:22 -04:00
|
|
|
"@types/chroma-js": "^2.1.3",
|
2021-07-15 10:28:51 -04:00
|
|
|
"@types/d3-ease": "^3.0.0",
|
2021-05-26 10:01:05 -04:00
|
|
|
"@types/jest": "^26.0.23",
|
2021-07-07 15:04:00 -04:00
|
|
|
"@types/maplibre-gl": "^1.13.1",
|
2021-05-20 21:54:08 -04:00
|
|
|
"@types/node": "^15.3.1",
|
2021-05-19 18:55:10 -04:00
|
|
|
"@types/react": "^17.0.1",
|
|
|
|
"@types/react-dom": "^17.0.1",
|
2021-06-16 18:16:49 -04:00
|
|
|
"@types/react-helmet": "^6.1.1",
|
2021-05-26 10:01:05 -04:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2021-05-25 16:21:21 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
|
|
"@typescript-eslint/parser": "^4.25.0",
|
2021-06-02 20:53:22 -04:00
|
|
|
"axe-core": "^4.2.1",
|
2021-05-26 10:01:05 -04:00
|
|
|
"babel-jest": "^27.0.1",
|
|
|
|
"babel-preset-gatsby": "^1.6.0",
|
2021-06-02 20:53:22 -04:00
|
|
|
"cypress": "^7.4.0",
|
|
|
|
"cypress-axe": "^0.12.2",
|
2021-05-25 16:21:21 -04:00
|
|
|
"eslint": "^7.27.0",
|
|
|
|
"eslint-config-google": "^0.14.0",
|
2021-06-02 20:53:22 -04:00
|
|
|
"eslint-plugin-cypress": "^2.11.3",
|
2021-07-15 13:00:15 -07:00
|
|
|
"eslint-plugin-formatjs": "^2.17.1",
|
2021-05-25 16:21:21 -04:00
|
|
|
"eslint-plugin-react": "^7.23.2",
|
2021-06-02 13:21:23 -04:00
|
|
|
"gatsby": "^3.4.1",
|
2021-05-20 21:54:08 -04:00
|
|
|
"gatsby-cli": "^3.5.0",
|
2021-05-21 13:05:27 -04:00
|
|
|
"gatsby-plugin-intl": "^0.3.3",
|
2021-05-25 16:21:21 -04:00
|
|
|
"gatsby-plugin-prettier-eslint": "^1.0.6",
|
2021-05-28 17:07:50 -07:00
|
|
|
"gatsby-plugin-react-helmet": "^4.6.0",
|
2021-05-20 23:59:20 -04:00
|
|
|
"gatsby-plugin-sass": "^4.5.0",
|
2021-05-25 12:07:45 -04:00
|
|
|
"gh-pages": "^3.2.0",
|
2021-05-26 10:01:05 -04:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
|
|
|
"jest": "^27.0.1",
|
2021-06-03 15:03:10 -04:00
|
|
|
"license-checker": "^25.0.1",
|
2021-05-25 16:21:21 -04:00
|
|
|
"prettier": "^2.3.0",
|
2021-05-26 10:01:05 -04:00
|
|
|
"react-test-renderer": "^17.0.2",
|
2021-05-20 23:59:20 -04:00
|
|
|
"sass": "^1.33.0",
|
2021-05-26 10:01:05 -04:00
|
|
|
"sass-loader": "^11.1.1",
|
2021-06-02 20:53:22 -04:00
|
|
|
"start-server-and-test": "^1.12.3",
|
2021-05-26 10:01:05 -04:00
|
|
|
"ts-jest": "^27.0.0"
|
2021-05-20 21:54:08 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-07-15 10:28:51 -04:00
|
|
|
"@trussworks/react-uswds": "git+https://git@github.com/nathillardusds/react-uswds#nathillardusds/ssr",
|
|
|
|
"@turf/bbox": "^6.5.0",
|
2021-06-30 07:08:22 -04:00
|
|
|
"chroma-js": "^2.1.2",
|
2021-07-15 10:28:51 -04:00
|
|
|
"d3-ease": "^3.0.1",
|
|
|
|
"mapbox-gl": "^1.13.0",
|
2021-07-07 15:04:00 -04:00
|
|
|
"maplibre-gl": ">=1.14.0",
|
2021-06-09 15:32:59 -04:00
|
|
|
"query-string": "^7.0.0",
|
2021-07-14 12:05:18 -07:00
|
|
|
"react": "^17.0.2",
|
2021-07-27 12:05:25 -07:00
|
|
|
"react-device-detect": "^1.17.0",
|
2021-05-27 09:54:42 -07:00
|
|
|
"react-dom": "^17.0.1",
|
2021-05-28 17:07:50 -07:00
|
|
|
"react-helmet": "^6.1.0",
|
2021-07-14 12:05:18 -07:00
|
|
|
"react-intl": "^5.20.4",
|
2021-07-15 10:28:51 -04:00
|
|
|
"react-map-gl": "^6.1.16",
|
2021-05-27 09:54:42 -07:00
|
|
|
"uswds": "^2.10.3"
|
2021-05-19 18:19:38 -04:00
|
|
|
}
|
|
|
|
}
|