-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.46 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
{
"name": "suzukalight-com",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"fix": "run-s typecheck lint format",
"typecheck": "tsc --noEmit",
"lint": "eslint --fix ./src",
"format": "prettier --write -l \"./src/**/*.{js,ts,tsx,md,mdx,graphql}\"",
"test": "jest",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -s ./.storybook/public -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.1",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mdx-js/react": "^1.6.22",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@react-icons/all-files": "^4.1.0",
"date-fns": "^2.21.3",
"framer-motion": "^4.1.16",
"gray-matter": "^4.0.3",
"next": "10.2.0",
"next-mdx-remote": "^2.1.3",
"next-seo": "^4.24.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-share": "^4.4.0",
"react-slick": "^0.28.1",
"react-twitter-embed": "^3.0.3",
"remark": "^13.0.0",
"remark-autolink-headings": "^6.0.1",
"remark-code-titles": "^0.1.2",
"remark-custom-blocks": "^2.5.1",
"remark-prism": "^1.3.6",
"remark-slug": "^6.0.0",
"remark-unwrap-images": "^2.0.0",
"rss": "^1.2.2",
"sass": "^1.32.13",
"slick-carousel": "^1.8.1",
"strip-markdown": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@next/bundle-analyzer": "^10.2.0",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.2.9",
"@types/jest": "^26.0.23",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/react-slick": "^0.23.4",
"@types/rss": "^0.0.28",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"sass-loader": "^11.1.1",
"storybook-addon-performance": "^0.15.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}