-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.21 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
107
108
109
110
111
112
{
"name": "stevensaunders-dev",
"version": "0.2.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@tailwindcss/aspect-ratio": "^0.4.0",
"axios": "^0.26.1",
"axios-auth-refresh": "^3.3.1",
"clsx": "^1.1.1",
"cors": "^2.8.5",
"gsap": "^3.10.4",
"locomotive-scroll": "^4.1.4",
"next": "^12.1.0",
"next-themes": "^0.1.1",
"nodemailer": "^6.7.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-locomotive-scroll": "^0.2.0",
"react-markdown": "^8.0.3",
"react-remark": "^2.1.0",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"rehype-toc": "^3.0.2",
"remark-gfm": "^3.0.1",
"sharp": "^0.30.6",
"slugify": "^1.6.5",
"spltjs": "^1.1.0",
"swr": "^1.2.2",
"tailwind-merge": "^1.2.0",
"tailwindcss-all": "^0.0.2",
"tailwindcss-animation-delay": "^1.0.7",
"xgplayer": "^2.31.4",
"xgplayer-hls.js": "^2.6.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@iconify/react": "^3.2.1",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.39",
"@types/tailwindcss": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "10.4.5",
"babel-loader": "^8.2.3",
"browserless": "^9.5.1",
"daisyui": "^2.19.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^7.0.4",
"inquirer-fuzzy-path": "^2.3.0",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"next-sitemap": "^1.9.12",
"plop": "^3.0.5",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"prop-types": "^15.8.1",
"puppeteer": "^15.3.1",
"sass": "^1.54.0",
"standard-version": "^9.3.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.0",
"yarn-audit-fix": "^9.3.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
},
"resolutions": {
"webpack": "^5"
}
}