77 строки
2.5 KiB
JSON
77 строки
2.5 KiB
JSON
{
|
|
"name": "frontend",
|
|
"version": "0.1.0",
|
|
"license": "MPL-2.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NEXT_PUBLIC_DEBUG=true next dev",
|
|
"dev:mocked": "NEXT_PUBLIC_MOCK_API=true npm run dev",
|
|
"watch": "chokidar \"src/**/*\" \"next.config.js\" --initial --command=\"npm run watch_build\"",
|
|
"watch_build": "NEXT_PUBLIC_DEBUG=true npm run build",
|
|
"build": "next build",
|
|
"build:mocked": "NEXT_PUBLIC_MOCK_API=true NEXT_PUBLIC_DEBUG=true npm run build",
|
|
"start": "next start",
|
|
"lint": "stylelint '**/*.scss' && prettier --check './src' && next lint",
|
|
"licensecheck": "license-checker --excludePrivatePackages --production --onlyAllow 'MPL; MIT; BSD-3-Clause; BSD-2-Clause; 0BSD; Apache-2.0; ISC; Zlib; CC0; Unlicense; WTFPL; Unicode-DFS-2016;'",
|
|
"test": "jest",
|
|
"postinstall": "msw init public/ --save"
|
|
},
|
|
"dependencies": {
|
|
"@fluent/bundle": "^0.18.0",
|
|
"@fluent/langneg": "^0.7.0",
|
|
"@fluent/react": "^0.15.2",
|
|
"@mozilla-protocol/core": "^17.0.1",
|
|
"@next/third-parties": "^14.2.9",
|
|
"@stripe/stripe-js": "^4.4.0",
|
|
"chokidar-cli": "^3.0.0",
|
|
"cldr-localenames-modern": "^45.0.0",
|
|
"msw": "^2.4.4",
|
|
"react": "18.3.1",
|
|
"react-aria": "^3.34.1",
|
|
"react-confetti": "^6.1.0",
|
|
"react-dom": "18.3.1",
|
|
"react-ga": "^3.3.1",
|
|
"react-intersection-observer": "^9.13.1",
|
|
"react-singleton-hook": "^4.0.1",
|
|
"react-stately": "^3.32.2",
|
|
"react-toastify": "^10.0.5",
|
|
"swr": "^2.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@next/eslint-plugin-next": "^14.2.8",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/jest-dom": "^6.5.0",
|
|
"@testing-library/react": "^16.0.1",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"@types/jest-axe": "^3.5.9",
|
|
"@types/react": "^18.3.5",
|
|
"babel-jest": "^29.7.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^14.2.9",
|
|
"eslint-plugin-jest-dom": "^5.4.0",
|
|
"eslint-plugin-testing-library": "^6.3.0",
|
|
"husky": "^9.1.5",
|
|
"jest": "^29.7.0",
|
|
"jest-axe": "^9.0.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jest-junit": "^16.0.0",
|
|
"license-checker": "^25.0.1",
|
|
"lint-staged": "^15.2.10",
|
|
"next": "^14.2.9",
|
|
"prettier": "3.3.3",
|
|
"react-test-renderer": "^18.3.1",
|
|
"sass": "^1.78.0",
|
|
"stylelint": "^16.9.0",
|
|
"stylelint-config-recommended-scss": "^14.1.0",
|
|
"stylelint-scss": "^6.5.1",
|
|
"typescript": "~5.4.5"
|
|
},
|
|
"volta": {
|
|
"node": "18.18.2",
|
|
"npm": "9.8.1"
|
|
},
|
|
"msw": {
|
|
"workerDirectory": "public"
|
|
}
|
|
}
|