-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "horace-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export -o _static",
"check-lint": "npx eslint ./src",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest --watch",
"prepare": "husky",
"watch": "tsc --watch",
"check-branch-name": "chmod 755 ./hooks/check_branch_naming.sh && sh ./hooks/check_branch_naming.sh",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hookform/resolvers": "^3.3.4",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@stripe/stripe-js": "^3.3.0",
"fuse.js": "^7.0.0",
"lodash": "^4.17.21",
"mobile-detect": "^1.4.5",
"next": "14.2.2",
"perfect-scrollbar": "^1.5.5",
"react": "^18",
"react-dom": "^18",
"react-ga": "^3.3.1",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.51.3",
"react-player": "^2.16.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.22.3",
"react-toastify": "^10.0.5",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/react": "^15.0.2",
"@types/lodash": "^4.17.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}