You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.3 KiB
90 lines
2.3 KiB
2 years ago
|
{
|
||
|
"name": "searching-front",
|
||
|
"version": "1.0.0",
|
||
|
"scripts": {
|
||
|
"watcher": "ts-node-esm ./services/domain-watcher.ts",
|
||
|
"parser": "ts-node-esm ./services/parser.ts",
|
||
|
"dev": "blitz dev",
|
||
|
"build": "blitz build",
|
||
|
"start": "blitz start",
|
||
|
"studio": "blitz prisma studio",
|
||
|
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
|
||
|
"test": "jest",
|
||
|
"test:watch": "jest --watch",
|
||
|
"prepare": "husky install"
|
||
|
},
|
||
|
"prisma": {
|
||
|
"schema": "db/schema.prisma"
|
||
|
},
|
||
|
"prettier": {
|
||
|
"semi": false,
|
||
|
"printWidth": 100
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.{js,ts,tsx}": [
|
||
|
"eslint --fix"
|
||
|
]
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@blitzjs/auth": "2.0.0-beta.3",
|
||
|
"@blitzjs/next": "2.0.0-beta.3",
|
||
|
"@blitzjs/rpc": "2.0.0-beta.3",
|
||
|
"@elastic/elasticsearch": "8.2.1",
|
||
|
"@hookform/resolvers": "2.9.7",
|
||
|
"@prisma/client": "4.2.1",
|
||
|
"@types/html-to-text": "8.1.1",
|
||
|
"@types/textversionjs": "1.1.1",
|
||
|
"axios": "0.27.2",
|
||
|
"blitz": "2.0.0-beta.3",
|
||
|
"cheerio": "1.0.0-rc.12",
|
||
|
"classnames": "2.3.1",
|
||
|
"dotenv": "16.0.1",
|
||
|
"framer-motion": "7.2.1",
|
||
|
"html-to-text": "8.2.1",
|
||
|
"i": "0.3.7",
|
||
|
"i18next": "21.9.1",
|
||
|
"jsdom": "20.0.0",
|
||
|
"next": "12.2.5",
|
||
|
"node-fetch": "3.2.10",
|
||
|
"npm": "8.18.0",
|
||
|
"react": "18.2.0",
|
||
|
"react-dom": "18.2.0",
|
||
|
"react-hook-form": "7.34.2",
|
||
|
"react-i18next": "11.18.6",
|
||
|
"react-paginate": "8.1.3",
|
||
|
"react-use": "17.4.0",
|
||
|
"react-use-keypress": "1.3.1",
|
||
|
"sanitize-html": "2.7.1",
|
||
|
"textversionjs": "1.1.3",
|
||
|
"tonapi-sdk-js": "0.18.0",
|
||
|
"tonweb": "0.0.55",
|
||
|
"ts-node": "10.9.1",
|
||
|
"zod": "3.17.3"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@next/bundle-analyzer": "12.0.8",
|
||
|
"@testing-library/jest-dom": "5.16.3",
|
||
|
"@types/jest": "27.4.1",
|
||
|
"@types/jsdom": "20.0.0",
|
||
|
"@types/node": "17.0.16",
|
||
|
"@types/preview-email": "2.0.1",
|
||
|
"@types/react": "18.0.17",
|
||
|
"@types/sanitize-html": "2.6.2",
|
||
|
"@typescript-eslint/eslint-plugin": "5.30.5",
|
||
|
"eslint": "7.32.0",
|
||
|
"eslint-config-next": "12.2.0",
|
||
|
"eslint-config-prettier": "8.5.0",
|
||
|
"husky": "7.0.4",
|
||
|
"jest": "27.5.1",
|
||
|
"lint-staged": "12.1.7",
|
||
|
"prettier": "^2.5.1",
|
||
|
"prettier-plugin-prisma": "3.8.0",
|
||
|
"pretty-quick": "3.1.3",
|
||
|
"preview-email": "3.0.7",
|
||
|
"prisma": "4.2.1",
|
||
|
"ts-jest": "28.0.7",
|
||
|
"typescript": "^4.5.3"
|
||
|
},
|
||
|
"private": true
|
||
|
}
|