-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·113 lines (113 loc) · 3.45 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ai-tool-nextjs",
"version": "0.1.1",
"type": "commonjs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma migrate db && yarn run build:css && next build",
"post-build": "next-sitemap",
"build:css": "postcss src/styles/tailwind.css -o src/styles/main.css",
"start": "next start",
"seed": "node -r dotenv/config ./scripts/seed.js",
"lint": "eslint --config .eslintrc.mjs 'src/**/*.{js,ts,tsx}'",
"format": "prettier 'src/**/*.{js,mjs,jsx,tsx,json,css,md}' --write"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/bundle-analyzer": "^13.5",
"@portabletext/react": "^3.0.11",
"@prisma/client": "^5.1.1",
"@sanity/client": "^6.4.9",
"@sanity/icons": "^2.0.0",
"@sanity/image-url": "^1.0.2",
"@sanity/portable-text-editor": "^3.19.1",
"@sanity/types": "^3.0.0",
"@sanity/ui": "^1.0.0",
"@tailwindcss/typography": "^0.5.10",
"@types/bcrypt": "^5.0.0",
"@types/eslint": "^8.44.6",
"@types/gulp-stylint": "^4.0.5",
"@types/node": "18.18",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"axios": "^1.6.0",
"babel-plugin-styled-components": "^2.1.4",
"bcrypt": "^5.1.0",
"canvas": "^2.10.1",
"csstype": "^3.0.10",
"depcheck": "^1.4.7",
"dotenv": "^16.3.1",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-config-next": "13.4.12",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"esprima": "^4.0.1",
"fslightbox-react": "^1.7.6",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"next": "13.5",
"next-auth": "^4.22.3",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "^4.4.1",
"next-optimized-images": "^2.6.2",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "^8.1.0",
"next-sanity": "^5.1.3",
"next-seo": "^6.4.0",
"next-sitemap": "^4.2.3",
"nextjs-sitemap-generator": "^1.3.1",
"openai": "^4.15.3",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"prettier": "^3.0.3",
"prisma": "^5.5.2",
"prismjs": "^1.29.0",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-is": "^18",
"react-modal-video": "^2.0.1",
"react-native-web": "^0.19.9",
"react-native-web-linear-gradient": "^1.1.2",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"remark-prism": "^1.3.6",
"remark-slug": "^7.0.1",
"rxjs": "^7.8.1",
"sanity": "latest",
"semver": "^7.5.4",
"sitemap": "^7.1.1",
"stripe": "^12.16.0",
"styled-components": "^5.2",
"swiper": "^10.1.0",
"tailwind": "^4.0.0",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"typescript-tslint-plugin": "^1.0.2"
},
"devDependencies": {
"@types/esprima": "^4",
"@types/fslightbox-react": "^1.7.3",
"@types/next-pwa": "^5",
"@types/remark-prism": "^1.3.4",
"daisyui": "^3.9.4",
"prettier-plugin-tailwindcss": "0.5.6",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0"
},
"packageManager": "[email protected]"
}