-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
{
"name": "@typehut/website",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"component:new": "hygen component new"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.css": "stylelint --fix"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@mapbox/rehype-prism": "^0.8.0",
"@react-hookz/web": "^12.0.0",
"body-scroll-lock": "^4.0.0-beta.0",
"budoux": "^0.0.3",
"clsx": "^1.1.1",
"constate": "^3.3.0",
"got": "^11.8.2",
"gray-matter": "^4.0.3",
"next": "12.0.3",
"next-mdx-remote": "^3.0.8",
"next-seo": "^4.28.1",
"quick-lru": "^6.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"reakit": "^1.3.11",
"remark-behead": "^2.3.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.4",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/next": "^1.0.1",
"@typehut/eslint-config-import": "^1.0.1",
"@types/body-scroll-lock": "^3.1.0",
"@types/jest": "^27.0.3",
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"dotenv": "^10.0.0",
"enhanced-resolve": "^5.8.3",
"eslint": "7.32.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"hygen": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-html-reporters": "^2.1.6",
"lint-staged": "^12.0.2",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.3.11",
"postcss-extend-rule": "^3.0.0",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.0.2",
"prettier": "^2.4.1",
"snapshot-diff": "^0.9.0",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-property-sort-order-smacss": "^8.0.0",
"stylelint-config-standard": "^24.0.0",
"tailwindcss-fluid-type": "^1.3.0",
"typescript": "4.4.4",
"windicss-webpack-plugin": "^1.5.8"
}
}