-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.92 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.92 KB
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
114
115
116
117
118
119
120
{
"name": "acf-game-share",
"description": "game sharing acf",
"version": "1.0.0",
"private": true,
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"dev": "next",
"build": "prisma generate && next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore --config .prettierrc \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"prepare": "husky install",
"test": "echo \"No tests specified\""
},
"dependencies": {
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@material-ui/core": "4.12.4",
"@material-ui/data-grid": "^4.0.0-alpha.37",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/styles": "4.11.5",
"@mui/icons-material": "5.16.7",
"@mui/material": "5.16.6",
"@mui/x-data-grid": "7.14.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "5.18.0",
"@reduxjs/toolkit": "2.2.7",
"@types/next-redux-wrapper": "3.0.0",
"@types/nodemailer": "6.4.15",
"@types/use-dark-mode": "2.3.1",
"axios": "1.7.4",
"bcrypt": "5.1.1",
"bcryptjs": "2.4.3",
"classnames": "2.5.1",
"dotenv-cli": "7.4.2",
"draft-js": "0.11.7",
"fs-extra": "11.2.0",
"gray-matter": "4.0.3",
"html-react-parser": "5.1.12",
"increase-memory-limit": "1.0.7",
"lodash": "^4.17.21",
"marked": "13.0.3",
"moment": "2.30.1",
"mongodb": "6.8.0",
"mongoose": "8.5.2",
"next": "14.2.5",
"next-auth": "^4.24.7",
"next-pwa": "^5.6.0",
"next-redux-wrapper": "8.1.0",
"nodemailer": "6.9.14",
"react": "18.3.1",
"react-cookie": "7.2.0",
"react-dom": "18.3.1",
"react-draft-wysiwyg": "1.15.0",
"react-imgix": "9.8.1",
"react-player": "2.16.0",
"react-quill": "2.0.0",
"react-redux": "9.1.2",
"redux": "5.0.1",
"redux-logger": "3.0.6",
"styled-jsx": "^5.1.6",
"superjson": "2.2.1",
"swr": "^2.2.5",
"typeface-roboto": "1.1.13",
"url-join": "^5.0.0",
"use-dark-mode": "2.3.1",
"workbox-webpack-plugin": "7.1.0"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/bcryptjs": "2.4.6",
"@types/classnames": "2.3.1",
"@types/lodash": "^4.17.7",
"@types/marked": "6.0.0",
"@types/moment": "2.13.0",
"@types/node": "22.1.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-draft-wysiwyg": "1.13.8",
"@types/react-imgix": "9.5.3",
"@types/redux-logger": "3.0.13",
"@types/url-join": "^4.0.3",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"babel-plugin-superjson-next": "0.4.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.8.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "^8.0.0",
"lint-staged": "15.2.8",
"prettier": "3.3.3",
"prisma": "5.18.0",
"typescript": "5.5.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"types": "./index.d.ts",
"main": "next.config.js",
"author": ""
}