This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.96 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
{
"name": "misior",
"description": "Create a new website open source project with nextJs to openTibia Comunnity",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/MITHGaming/mitg.misior",
"author": "Guilherme Fontes <gui.fontes.amorim@gmail.com> (@guifontes)",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript",
"misior",
"tibia"
],
"engines": {
"node": "16.x"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"migrate": "prisma migrate dev",
"prisma-reset": "prisma migrate reset",
"pscalesetup": "pscale connect misior initial-setup --port 3309",
"pscaleshadow": "pscale connect misior shadow --port 3310",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@prisma/client": "4.0.0",
"@reduxjs/toolkit": "1.8.3",
"add": "2.0.6",
"axios": "0.27.2",
"express-rate-limit": "6.4.0",
"express-slow-down": "1.4.0",
"formik": "2.2.9",
"framer-motion": "6.4.3",
"joi": "17.6.0",
"moment-timezone": "0.5.34",
"next": "12.1.6",
"next-auth": "4.9.0",
"next-pwa": "5.5.4",
"next-redux-wrapper": "7.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.4.0",
"react-loading-icons": "1.1.0",
"react-loading-skeleton": "3.1.0",
"react-redux": "8.0.2",
"react-toastify": "9.0.5",
"redux": "4.2.0",
"response-time": "2.3.2",
"sha1": "1.1.1",
"sharp": "0.30.7",
"styled-components": "5.3.5",
"swr": "1.3.0",
"xml-js": "1.6.11",
"yarn": "1.22.19",
"yup": "0.32.11"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/bcrypt": "5.0.0",
"@types/express-slow-down": "1.3.2",
"@types/gtag.js": "0.0.10",
"@types/node": "18.0.3",
"@types/react": "17.0.44",
"@types/react-dom": "18.0.6",
"@types/response-time": "2.3.5",
"@types/sha1": "1.1.3",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.19.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.2.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prisma": "4.0.0",
"typescript": "4.7.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}