-
Adrian Orłów authoredAdrian Orłów authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
This project manages its dependencies using npm.
Learn more
package.json 3.09 KiB
{
"name": "minerva",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "node_modules/eslint/bin/eslint.js src --ext .ts,.tsx",
"prettier:ci": "./node_modules/.bin/prettier --check .",
"format": "next lint && ./node_modules/.bin/prettier --check .",
"format:fix": "next lint --fix && ./node_modules/.bin/prettier --write .",
"check-types": "tsc --pretty --noEmit",
"prepare": "husky install",
"postinstall": "husky install",
"test": "jest --config ./jest.config.ts --transformIgnorePatterns 'node_modules/(?!(ol|geotiff|quick-lru|.*\\.mjs$))'",
"test:watch": "jest --watch --config ./jest.config.ts",
"test:ci": "jest --config ./jest.config.ts --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false --passWithNoTests",
"test:coverage": "jest --watchAll --coverage --config ./jest.config.ts",
"test:coveragee": "jest --coverage",
"coverage": "open ./coverage/lcov-report/index.html",
"cypress": "cypress open"
},
"dependencies": {
"@next/font": "^13.5.2",
"@reduxjs/toolkit": "^1.9.6",
"@testing-library/react": "^14.0.0",
"@types/node": "20.6.2",
"@types/openlayers": "^4.6.20",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"axios": "^1.5.1",
"axios-hooks": "^5.0.0",
"eslint-config-next": "13.4.19",
"next": "13.4.19",
"ol": "^8.1.0",
"postcss": "8.4.29",
"react": "18.2.0",
"react-accessible-accordion": "^5.0.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.2",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@testing-library/jest-dom": "^6.1.3",
"@types/jest": "^29.5.5",
"@types/react-redux": "^7.1.26",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"axios-mock-adapter": "^1.22.0",
"cypress": "^13.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^6.0.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-2": "npm:prettier@^2",
"prettier-plugin-tailwindcss": "^0.5.6",
"typescript": "^5.2.2",
"zod-fixture": "^2.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}