mirror of
https://github.com/dsoaress/link-free.git
synced 2026-08-17 06:56:04 +01:00
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "link-free",
|
|
"author": "Daniel Soares <daniel.soares@me.com>",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prisma": "yarn prisma:push && yarn prisma:seed",
|
|
"initialdata": "ts-node scripts/initialdata.ts",
|
|
"predev": "yarn prisma && yarn initialdata",
|
|
"dev": "next dev",
|
|
"prebuild": "yarn prisma && yarn initialdata",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint --fix",
|
|
"prepare": "husky install",
|
|
"clean": "rm -rf node_modules .next data public",
|
|
"type-check": "tsc",
|
|
"prisma:push": "prisma db push",
|
|
"prisma:seed": "prisma db seed"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^3.6.0",
|
|
"@stitches/react": "^1.2.6",
|
|
"axios": "^0.24.0",
|
|
"lodash": "^4.17.21",
|
|
"next": "12.0.7",
|
|
"next-connect": "^0.11.0",
|
|
"react": "17.0.2",
|
|
"react-dom": "17.0.2",
|
|
"react-icons": "^4.3.1",
|
|
"sharp": "^0.29.3",
|
|
"swr": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "15.0.0",
|
|
"@commitlint/config-conventional": "15.0.0",
|
|
"@types/lodash": "^4.14.178",
|
|
"@types/node": "^16.11.12",
|
|
"@types/react": "17.0.37",
|
|
"eslint": "8.4.1",
|
|
"eslint-config-next": "12.0.7",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"eslint-plugin-simple-import-sort": "7.0.0",
|
|
"husky": "7.0.4",
|
|
"lint-staged": "12.1.2",
|
|
"prettier": "2.5.0",
|
|
"pretty-quick": "3.1.2",
|
|
"prisma": "^3.6.0",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.5.3"
|
|
},
|
|
"prisma": {
|
|
"seed": "ts-node prisma/seed.ts"
|
|
}
|
|
}
|