forked from babaphemy/horace-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.08 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
{
"name": "horace-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.11",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.6",
"@stripe/stripe-js": "^1.52.0",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"mobile-detect": "^1.4.5",
"next": "12.2.0",
"perfect-scrollbar": "^1.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-gtm-module": "^2.0.11",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.43.1",
"react-player": "^2.11.2",
"react-query": "^3.39.3",
"react-router-dom": "^6.8.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.1",
"typescript": "^4.9.4",
"web-vitals": "^2.1.4",
"yup": "^1.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export -o _static",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "jest --watch",
"prepare": "husky install",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^10.0.0",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.191",
"@types/node": "^16.18.11",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.13",
"cypress": "^12.9.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"husky": "^8.0.0",
"lint-staged": "^13.1.1",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write"
}
}