-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "ts-node --transpileOnly --skipProject scripts/prepare-error-list.ts",
"dev": "next-remote-watch ./src/content",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"postbuild": "next-sitemap",
"build:test": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint src -f unix"
},
"dependencies": {
"@callstack/react-theme-provider": "^3.0.7",
"@docsearch/react": "3",
"glob": "^8.0.1",
"gray-matter": "^4.0.3",
"hastscript": "^7.0.2",
"linaria": "^2.3.1",
"next": "12.3.4",
"next-linaria": "^0.11.0",
"next-mdx-remote": "^4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-responsive-carousel": "^3.2.23",
"rehype-prism": "^2.1.2",
"remark-directive": "^2.0.1",
"remark-gfm": "^3.0.1",
"remark-prism": "^1.3.6",
"remark-unwrap-images": "^3.0.1",
"ts-node": "^10.8.0",
"undici": "^5.26.2",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@next/bundle-analyzer": "^12.1.5",
"@react-theming/storybook-addon": "^1.1.5",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/remark-prism": "^1.3.3",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"eslint": "8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.7",
"js-yaml": "^4.1.0",
"next-compose-plugins": "^2.2.1",
"next-remote-watch": "^1.0.0",
"next-sitemap": "^2.5.20",
"prettier": "2.4.1",
"typescript": "4.5.5"
}
}