-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.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
{
"name": "assertiveness-training",
"description": "A Tool to help you practice your speaking ability and assertiveness skills",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "eslint --ignore-path .gitignore --fix",
"format": "prettier --ignore-path .gitignore \"pages/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install"
},
"lint-staged": {
"./**/*.{ts,js,jsx,tsx}": [
"pnpm run lint",
"pnpm run format"
]
},
"dependencies": {
"@typegoose/typegoose": "11.4.1",
"axios": "1.5.0",
"jsonwebtoken": "9.0.2",
"mongoose": "^7.4.2",
"next": "13.4.13",
"next-auth": "4.24.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@types/jsonwebtoken": "9.0.5",
"@types/node": "20.4.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"autoprefixer": "10.4.15",
"eslint": "8.48.0",
"eslint-config-alloy": "5.1.1",
"eslint-config-next": "13.4.19",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"postcss": "8.4.28",
"prettier": "3.0.2",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"resolutions": {
"@types/react": "^17.0.38"
}
}