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": {
|
2021-09-07 10:35:11 -07:00
|
|
|
"develop": "gatsby develop -H 0.0.0.0",
|
|
|
|
"start": "gatsby develop -H 0.0.0.0",
|
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-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-08-25 08:34:18 -07:00
|
|
|
"test": "jest",
|
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",
|
2022-04-25 18:59:58 -04:00
|
|
|
"intl:removeNesting": "node src/intl/removeNesting.js",
|
2021-10-14 13:49:16 -07:00
|
|
|
"intl:compile-en": "formatjs compile src/intl/en.json --ast --out-file compiled-lang/en.json",
|
2022-03-17 13:03:26 -04:00
|
|
|
"test:intl-extraction": "node src/intl/testIntlExtraction",
|
2022-07-15 12:54:58 -04:00
|
|
|
"prepare": "cd .. && husky install client/.husky",
|
|
|
|
"gc": "node .generate_component $1"
|
2021-05-19 18:19:38 -04:00
|
|
|
},
|
2021-05-19 18:55:10 -04:00
|
|
|
"devDependencies": {
|
2022-03-23 13:51:54 -04:00
|
|
|
"@formatjs/cli": "^4.8.2",
|
|
|
|
"@testing-library/cypress": "^8.0.2",
|
|
|
|
"@testing-library/jest-dom": "^5.16.2",
|
2021-06-02 20:53:22 -04:00
|
|
|
"@testing-library/react": "^11.2.7",
|
2021-07-15 10:28:51 -04:00
|
|
|
"@types/d3-ease": "^3.0.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"@types/jest": "^26.0.24",
|
|
|
|
"@types/maplibre-gl": "^1.14.0",
|
|
|
|
"@types/node": "^15.14.9",
|
|
|
|
"@types/react": "^17.0.41",
|
|
|
|
"@types/react-dom": "^17.0.14",
|
|
|
|
"@types/react-helmet": "^6.1.5",
|
2021-05-26 10:01:05 -04:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2022-03-23 13:51:54 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
|
|
"axe-core": "^4.4.1",
|
|
|
|
"babel-jest": "^27.5.1",
|
|
|
|
"babel-preset-gatsby": "^1.14.0",
|
2022-03-29 22:49:57 -04:00
|
|
|
"cypress": "^8.3.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"cypress-axe": "^0.14.0",
|
2022-03-29 22:49:57 -04:00
|
|
|
"cypress-cucumber-preprocessor": "^4.2.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"eslint": "^7.32.0",
|
2021-05-25 16:21:21 -04:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"eslint-plugin-cypress": "^2.12.1",
|
|
|
|
"eslint-plugin-formatjs": "^2.21.0",
|
|
|
|
"eslint-plugin-react": "^7.29.4",
|
|
|
|
"gatsby": "^3.14.6",
|
|
|
|
"gatsby-cli": "^3.14.2",
|
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",
|
2022-03-23 13:51:54 -04:00
|
|
|
"gatsby-plugin-react-helmet": "^4.14.0",
|
|
|
|
"gatsby-plugin-sass": "^4.14.0",
|
|
|
|
"gh-pages": "^3.2.3",
|
2022-03-17 13:03:26 -04:00
|
|
|
"husky": "^7.0.4",
|
2021-05-26 10:01:05 -04:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"jest": "^27.5.1",
|
2021-06-03 15:03:10 -04:00
|
|
|
"license-checker": "^25.0.1",
|
2022-03-23 13:51:54 -04:00
|
|
|
"prettier": "^2.6.0",
|
2021-05-26 10:01:05 -04:00
|
|
|
"react-test-renderer": "^17.0.2",
|
2022-06-07 14:50:08 -04:00
|
|
|
"sass": "~1.32.13",
|
2021-05-26 10:01:05 -04:00
|
|
|
"sass-loader": "^11.1.1",
|
2022-03-23 13:51:54 -04:00
|
|
|
"ts-jest": "^27.1.3"
|
2021-05-20 21:54:08 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-03-23 13:51:54 -04:00
|
|
|
"-": "^0.0.1",
|
2022-07-25 14:18:47 -04:00
|
|
|
"@sentry/gatsby": "^7.7.0",
|
2022-07-19 09:29:30 -07:00
|
|
|
"@trussworks/react-uswds": "^3.1.0",
|
2021-07-15 10:28:51 -04:00
|
|
|
"@turf/bbox": "^6.5.0",
|
|
|
|
"d3-ease": "^3.0.1",
|
2022-03-23 13:51:54 -04:00
|
|
|
"gatsby-plugin-env-variables": "^2.2.0",
|
|
|
|
"gatsby-plugin-robots-txt": "^1.7.0",
|
2021-10-04 08:43:33 -07:00
|
|
|
"gatsby-plugin-sitemap": "^4.10.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"mapbox-gl": "^1.13.2",
|
|
|
|
"maplibre-gl": "^1.14.0",
|
|
|
|
"query-string": "^7.1.1",
|
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",
|
2022-03-23 13:51:54 -04:00
|
|
|
"react-dom": "^17.0.2",
|
2021-05-28 17:07:50 -07:00
|
|
|
"react-helmet": "^6.1.0",
|
2022-03-23 13:51:54 -04:00
|
|
|
"react-intl": "^5.24.7",
|
|
|
|
"react-map-gl": "^6.1.19",
|
|
|
|
"react-use": "^17.3.2",
|
2022-07-19 09:29:30 -07:00
|
|
|
"uswds": "^2.13.3"
|
2021-09-15 12:06:13 -07:00
|
|
|
},
|
|
|
|
"cypress-cucumber-preprocessor": {
|
2021-10-13 14:06:05 -07:00
|
|
|
"nonGlobalStepDefinitions": false
|
2021-05-19 18:19:38 -04:00
|
|
|
}
|
|
|
|
}
|