-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "prisma-ama",
"version": "1.0.0",
"scripts": {
"dev": "next",
"prisma:generate:library": "PRISMA_CLIENT_ENGINE_TYPE='library' prisma generate",
"prisma:generate:dataproxy": "PRISMA_CLIENT_ENGINE_TYPE='dataproxy' prisma generate",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint ./src/pages/* ./src/components/* ./src/pages/api/* ./src/lib/* ./src/types/* -c .eslintrc.json --fix --ext ts,tsx",
"husky:install": "husky install",
"db:push": "prisma db push",
"prod:db:seed": "dotenv -- sh -c 'DATABASE_URL=\"$MIGRATE_DATABASE_URL\" prisma db seed'"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@next-auth/prisma-adapter": "1.0.4",
"@prisma/client": "4.3.1",
"@tailwindcss/forms": "0.3.4",
"@tailwindcss/typography": "0.4.1",
"@tippy.js/react": "3.1.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"babel-plugin-superjson-next": "0.4.1",
"cloudinary": "1.27.1",
"cookie": "0.4.1",
"graphql": "15.6.1",
"next": "12.2.5",
"next-auth": "4.12.0",
"next-seo": "4.28.1",
"prismjs": "1.27.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-hot-toast": "2.1.1",
"react-linkify": "1.0.0-alpha",
"react-markdown": "7.0.1",
"react-query": "3.26.0",
"string-replace-to-array": "2.1.0",
"styled-components": "5.3.1",
"superjson": "1.8.0",
"timeago.js": "4.0.2"
},
"devDependencies": {
"@types/node": "16.10.3",
"@types/react": "17.0.27",
"@typescript-eslint/parser": "4.33.0",
"autoprefixer": "10.3.7",
"babel-plugin-styled-components": "1.13.2",
"dotenv-cli": "4.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-mdx": "1.15.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"lint-staged": "11.2.3",
"postcss": "8.3.9",
"postcss-import": "14.0.2",
"postcss-preset-env": "6.7.0",
"prettier": "2.4.1",
"prettier-eslint": "13.0.0",
"prisma": "4.3.1",
"stylelint-config-recommended": "5.0.0",
"tailwindcss": "2.2.16",
"ts-node": "^10.9.1",
"typescript": "4.4.4",
"typescript-eslint-parser": "22.0.0",
"webpack": "5.58.1"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"pre-commit": "lint:staged && generate",
"license": "MIT"
}