Files
link-free/package.json

58 lines
1.6 KiB
JSON
Raw Normal View History

2020-12-11 18:47:46 -03:00
{
2021-12-10 20:54:28 -03:00
"name": "link-free",
"author": "Daniel Soares <daniel.soares@me.com>",
"version": "1.0.0",
2020-12-11 18:47:46 -03:00
"private": true,
2021-12-10 20:54:28 -03:00
"license": "MIT",
2020-12-11 18:47:46 -03:00
"scripts": {
2021-12-13 15:34:37 -03:00
"prisma": "yarn prisma:push && yarn prisma:seed",
"initialdata": "ts-node scripts/initialdata.ts",
"predev": "yarn prisma && yarn initialdata",
2021-12-10 20:54:28 -03:00
"dev": "next dev",
2021-12-13 15:34:37 -03:00
"prebuild": "yarn prisma && yarn initialdata",
2021-12-10 20:54:28 -03:00
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"prepare": "husky install",
"clean": "rm -rf node_modules .next data public",
2021-12-13 15:34:37 -03:00
"type-check": "tsc",
"prisma:push": "prisma db push",
"prisma:seed": "prisma db seed"
2020-12-11 18:47:46 -03:00
},
"dependencies": {
2021-12-13 15:34:37 -03:00
"@prisma/client": "^3.6.0",
2021-12-10 20:54:28 -03:00
"@stitches/react": "^1.2.6",
2021-12-13 15:34:37 -03:00
"axios": "^0.24.0",
2021-12-13 00:36:38 -03:00
"lodash": "^4.17.21",
2021-12-10 20:54:28 -03:00
"next": "12.0.7",
2021-12-13 15:34:37 -03:00
"next-connect": "^0.11.0",
"react": "17.0.2",
2021-12-11 13:42:11 -03:00
"react-dom": "17.0.2",
2021-12-13 16:04:31 -03:00
"react-icons": "^4.3.1",
2021-12-13 17:12:51 -03:00
"sharp": "^0.29.3",
"swr": "^1.1.1"
2021-04-12 08:27:27 -03:00
},
"devDependencies": {
2021-12-10 20:54:28 -03:00
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
2021-12-13 00:36:38 -03:00
"@types/lodash": "^4.14.178",
2021-12-13 15:34:37 -03:00
"@types/node": "^16.11.12",
2021-12-10 20:54:28 -03:00
"@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",
2021-12-13 15:34:37 -03:00
"prisma": "^3.6.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
2020-12-11 18:47:46 -03:00
}
2021-12-10 20:54:28 -03:00
}