-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
{
"name": "jamstack-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix:lint": "next lint --fix",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@react-three/drei": "^9.50.3",
"@react-three/fiber": "^8.10.0",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "^17.0.24",
"@types/react": "^18.0.26",
"@types/three": "^0.147.1",
"cheerio": "^1.0.0-rc.10",
"daisyui": "^2.14.0",
"data-fns": "^1.1.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"highlight.js": "^11.5.1",
"microcms-js-sdk": "^2.0.0",
"moment": "^2.29.3",
"next": "13.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moment": "^1.1.2",
"react-use": "^17.4.0",
"three": "^0.148.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@storybook/addon-essentials": "7.6.13",
"@storybook/addon-interactions": "7.6.13",
"@storybook/addon-links": "7.6.13",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "7.6.13",
"@storybook/nextjs": "7.6.13",
"@storybook/react": "7.6.13",
"@storybook/test": "7.6.13",
"@svgr/webpack": "^8.1.0",
"@types/cheerio": "^0.22.31",
"@types/gtag.js": "^0.0.18",
"@types/highlightjs": "^9.12.2",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.3.0",
"eslint": "8.13.0",
"eslint-config-next": "^14.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.8.3",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"postcss": "^8.4.12",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
"storybook": "7.6.13",
"tailwindcss": "^3.0.24"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,less,sass,scss}": [
"stylelint --fix"
]
}
}