colouring-montreal/app/package.json

103 lines
3.0 KiB
JSON
Raw Normal View History

{
"name": "colouring-london-app",
"version": "1.0.0",
"description": "Render frontend (server- and client-side)",
"private": true,
"license": "MIT",
"scripts": {
2020-01-09 08:07:50 -05:00
"clean": "rm -rf build",
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"lint": "eslint --ext .tsx --ext .ts .",
"start:prod": "NODE_ENV=production node build/server.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
2021-04-26 14:19:06 -04:00
"@loadable/component": "^5.14.1",
2018-09-10 05:44:32 -04:00
"@mapbox/sphericalmercator": "^1.1.0",
"ajv": "^7.1.1",
"ajv-formats": "^1.5.1",
"body-parser": "^1.20.1",
"bootstrap": "^4.5.0",
"canvas-confetti": "^1.2.0",
2020-04-09 09:08:18 -04:00
"connect-pg-simple": "^6.1.0",
"express": "^4.18.2",
"express-session": "^1.17.1",
2021-04-26 14:19:06 -04:00
"geojson": "^0.5.0",
"leaflet": "^1.7.1",
2021-04-26 18:53:15 -04:00
"lodash": "^4.17.21",
2022-02-02 10:06:16 -05:00
"mapnik": "^4.5.9",
"markdown-to-jsx": "^7.1.3",
2019-02-24 10:29:39 -05:00
"node-fs": "^0.1.7",
"nodemailer": "^6.4.11",
"pg-format": "^1.0.4",
2022-02-02 10:06:16 -05:00
"pg-promise": "^10.11.1",
"query-string": "^6.13.1",
2021-04-26 14:19:06 -04:00
"react": "^17.0.2",
2023-04-21 08:41:03 -04:00
"react-datepicker": "^4.11.0",
2021-04-26 14:19:06 -04:00
"react-dom": "^17.0.2",
"react-leaflet": "^3.1.0",
"react-router-dom": "^5.2.0",
2021-04-18 15:44:05 -04:00
"serialize-javascript": "^5.0.1",
"sharp": "^0.30.5",
2020-01-09 08:07:50 -05:00
"use-throttle": "0.0.3"
},
"devDependencies": {
"@types/express": "^4.17.7",
2020-04-09 09:08:18 -04:00
"@types/express-session": "^1.17.0",
2021-04-26 14:19:06 -04:00
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.22",
"@types/leaflet": "^1.7.0",
"@types/loadable__component": "^5.13.3",
2021-04-26 18:53:15 -04:00
"@types/lodash": "^4.14.168",
2019-09-17 12:53:58 -04:00
"@types/mapbox__sphericalmercator": "^1.1.3",
"@types/node": "^12.12.53",
2020-04-09 09:08:18 -04:00
"@types/nodemailer": "^6.4.0",
"@types/pg-format": "^1.0.2",
2021-04-26 14:19:06 -04:00
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
2019-12-10 06:50:47 -05:00
"@types/react-router-dom": "^4.3.5",
2021-04-26 14:19:06 -04:00
"@types/sharp": "^0.28.0",
"@types/webpack-env": "^1.16.0",
2021-04-18 15:38:21 -04:00
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
2022-02-02 10:06:16 -05:00
"copy-webpack-plugin": "^6.4.1",
2021-04-18 15:38:21 -04:00
"eslint": "^7.24.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-react": "^7.23.2",
2022-02-02 10:06:16 -05:00
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.12.0",
2021-04-18 15:38:21 -04:00
"postcss": "^8.2.4",
"razzle": "^4.0.4",
"razzle-dev-utils": "^4.0.4",
"razzle-plugin-typescript": "^4.0.4",
"ts-jest": "^26.5.5",
2021-04-26 14:19:06 -04:00
"typescript": "^4.2.4",
"webpack": "^5.76.0",
2021-04-18 15:38:21 -04:00
"webpack-dev-server": "^3.11.0"
2019-08-12 05:24:08 -04:00
},
"jest": {
"transform": {
"\\.(ts|tsx)$": "ts-jest",
"\\.css$": "<rootDir>/node_modules/razzle/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/node_modules/razzle/config/jest/fileTransform.js"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.(ts|js)?(x)",
"<rootDir>/src/**/?(*.)(spec|test).(ts|js)?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
]
}
}