-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "garden",
"version": "0.5.0",
"author": "alex christie (alexj.christie@gmail.com)",
"license": "MIT",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix . && echo 'linted 💯'",
"test": "jest",
"testing": "jest --watchAll",
"stories": "start-storybook -p 6006 --no-dll",
"build-stories": "build-storybook --no-dll"
},
"dependencies": {
"@emotion/react": "11.9.3",
"@theme-ui/color": "0.14.5",
"@theme-ui/prism": "0.14.5",
"babel-plugin-styled-components": "2.0.7",
"fast-glob": "3.2.11",
"fuse.js": "6.6.2",
"gray-matter": "4.0.3",
"lodash": "4.17.21",
"markdown-link-extractor": "4.0.1",
"mdast-util-toc": "6.1.0",
"next": "12.1.6",
"next-mdx-relations": "0.0.16",
"next-mdx-remote": "4.0.3",
"prism-react-renderer": "1.3.3",
"prop-types": "15.8.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"remark-autolink-headings": "7.0.1",
"remark-gfm": "3.0.1",
"remark-slug": "7.0.1",
"styled-components": "5.3.5",
"styled-system": "5.1.5",
"theme-ui": "0.14.5",
"unist-util-visit": "4.1.0"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/plugin-syntax-jsx": "7.17.12",
"@storybook/addon-actions": "6.4.22",
"@storybook/addon-essentials": "6.4.22",
"@storybook/addon-links": "6.4.22",
"@storybook/react": "6.4.22",
"babel-eslint": "10.1.0",
"babel-jest": "28.1.3",
"babel-loader": "8.2.5",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "8.17.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-babel-module": "5.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"jest": "28.1.3",
"prettier": "2.6.2",
"react-is": "18.1.0",
"react-test-renderer": "18.1.0"
}
}