-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "sportscentral",
"description": "SportsCentral - Web Application",
"author": "SportsCentral Team <[email protected]>",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next",
"dev:server": "json-server ./src/data/server.json -p 3333 -w -d 500",
"build": "next build",
"start": "next start",
"cypress": "cypress open",
"test:e2e": "cypress run",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@chakra-ui/next-js": "2.1.2",
"@chakra-ui/react": "2.5.5",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@hookform/resolvers": "3.1.0",
"@phosphor-icons/react": "2.0.8",
"axios": "1.3.6",
"date-fns": "2.29.3",
"framer-motion": "10.12.4",
"next": "13.3.0",
"next-seo": "6.0.0",
"nookies": "2.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"uuid": "9.0.0",
"zod": "3.21.4"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"cypress": "12.11.0",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"json-server": "0.17.3",
"lint-staged": "13.2.1",
"prettier": "2.8.7",
"typescript": "5.0.4"
}
}