colouring-montreal/app/package.json

88 lines
2.6 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": {
2020-04-09 09:08:18 -04:00
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
2018-09-10 05:44:32 -04:00
"@mapbox/sphericalmercator": "^1.1.0",
2019-05-27 11:12:48 -04:00
"body-parser": "^1.19.0",
2019-12-10 06:50:47 -05:00
"bootstrap": "^4.4.1",
2020-04-09 09:08:18 -04:00
"connect-pg-simple": "^6.1.0",
2019-05-27 11:12:48 -04:00
"express": "^4.17.1",
2019-12-10 06:50:47 -05:00
"express-session": "^1.17.0",
"leaflet": "^1.6.0",
"lodash.isequal": "^4.5.0",
2020-04-09 09:08:18 -04:00
"mapnik": "^4.4.0",
2019-02-24 10:29:39 -05:00
"node-fs": "^0.1.7",
2020-04-09 09:08:18 -04:00
"nodemailer": "^6.4.6",
2019-08-12 16:57:44 -04:00
"pg-promise": "^8.7.5",
2020-04-09 09:08:18 -04:00
"query-string": "^6.12.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
2018-09-10 05:44:32 -04:00
"react-leaflet": "^1.0.1",
"react-leaflet-universal": "^1.2.0",
"react-router-dom": "^5.0.1",
2019-12-10 06:50:47 -05:00
"serialize-javascript": "^2.1.1",
2020-01-09 08:07:50 -05:00
"sharp": "^0.22.1",
"use-throttle": "0.0.3"
},
"devDependencies": {
2020-04-09 09:08:18 -04:00
"@types/express": "^4.17.5",
"@types/express-session": "^1.17.0",
"@types/jest": "^24.9.1",
2019-12-03 12:30:51 -05:00
"@types/lodash": "^4.14.149",
"@types/lodash.isequal": "^4.5.5",
2019-09-17 12:53:58 -04:00
"@types/mapbox__sphericalmercator": "^1.1.3",
2020-04-09 09:08:18 -04:00
"@types/node": "^12.12.35",
"@types/nodemailer": "^6.4.0",
"@types/react": "^16.9.33",
"@types/react-dom": "^16.9.6",
"@types/react-leaflet": "^2.5.1",
2019-12-10 06:50:47 -05:00
"@types/react-router-dom": "^4.3.5",
"@types/sharp": "^0.22.3",
2020-04-09 09:08:18 -04:00
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
2020-04-09 09:08:18 -04:00
"babel-eslint": "^10.1.0",
2019-05-27 11:12:48 -04:00
"eslint": "^5.16.0",
2019-12-10 06:50:47 -05:00
"eslint-plugin-jest": "^22.21.0",
2020-04-09 09:08:18 -04:00
"eslint-plugin-react": "^7.19.0",
"razzle": "^3.0.0",
"razzle-plugin-typescript": "^3.0.0",
2020-04-09 09:08:18 -04:00
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
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}"
]
}
}