-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.98 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.98 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-code-blocks",
"description": "Modified Atlaskit's Code Block to support more languages (i.e graphql, reasonml, etc) and theme (i.e railscast, darcula, monokai, etc) code snippets!",
"keywords": [
"code-snippets",
"code-blocks",
"react-syntax-highlighter",
"mdx"
],
"author": "rajinwonderland",
"maintainers": [
"thomasmost"
],
"version": "0.1.4",
"homepage": "https://react-code-blocks.rajinwonderland.vercel.app",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/react-code-blocks.esm.js",
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-actions": "^7.1.1",
"@storybook/addon-console": "^2.0.0",
"@storybook/addon-docs": "^7.1.1",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^7.1.1",
"@storybook/addon-storysource": "^7.1.1",
"@storybook/addon-viewport": "^7.1.1",
"@storybook/addons": "^7.1.1",
"@storybook/react": "^7.1.1",
"@storybook/react-webpack5": "^7.1.1",
"@types/color": "^3.0.1",
"@types/enzyme": "^3.10.5",
"@types/he": "^1.1.1",
"@types/node": "^20.6.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/styled-components": "^5.1.0",
"enzyme": "^3.11.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"storybook": "^7.1.1",
"ts-loader": "^6.2.2",
"tsdx": "^0.13.2",
"typescript": "^5.1.6",
"typescript-plugin-styled-components": "^1.4.4"
},
"dependencies": {
"@babel/runtime": "^7.10.4",
"@types/react-syntax-highlighter": "^15.5.7",
"react-syntax-highlighter": "^15.5.0",
"styled-components": "^6.0.5",
"tslib": "^2.6.2"
},
"pnpm": {
"overrides": {
"highlight.js@>=9.0.0 <10.4.1": ">=10.4.1",
"prismjs@>=1.1.0 <1.21.0": ">=1.21.0",
"prismjs@<1.25.0": ">=1.25.0",
"prismjs@<1.24.0": ">=1.24.0",
"prismjs@<1.23.0": ">=1.23.0",
"highlight.js@<9.18.2": ">=9.18.2",
"prismjs@>=1.14.0 <1.27.0": ">=1.27.0",
"engine.io@>=5.1.0 <6.4.2": ">=6.4.2",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"word-wrap@<1.2.4": ">=1.2.4"
}
}
}