-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
93 lines (93 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "marksy",
"version": "8.0.0",
"description": "Convert markdown into react components",
"keywords": [
"convert",
"markdown",
"react"
],
"homepage": "https://github.com/storybooks/marksy",
"bugs": {
"url": "https://github.com/storybooks/marksy/issues"
},
"license": "MIT",
"author": "Christian Alfoni",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/storybooks/marksy"
},
"scripts": {
"build": "cross-env BABEL_ENV=production babel src/ --out-dir=lib/ -s",
"lint": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json ./src ./app",
"prepare": "npm run build",
"prepublish": "npm run build",
"size": "size-limit",
"start": "webpack-dev-server --devtool eval-source-map --progress --colors --content-base build",
"test": "jest"
},
"dependencies": {
"@babel/standalone": "^7.4.5",
"he": "^1.2.0",
"marked": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^12.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^27.0.2",
"babel-loader": "^8.0.0",
"cross-env": "^7.0.2",
"css-loader": "^6.2.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^4.2.0",
"global": "^4.3.2",
"highlight.js": "^11.0.0",
"inferno-create-element": "^7.1.12",
"inferno-server": "^7.1.12",
"jest": "^26.6.1",
"json-loader": "^0.5.7",
"node-libs-browser": "^2.2.0",
"preact": "^10.0.3",
"preact-render-to-string": "^5.1.0",
"prettier": "^2.3.0",
"prismjs": "^1.16.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.3",
"size-limit": "^4.7.0",
"style-loader": "^3.2.1",
"webpack": "^5.37.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.4.1"
},
"size-limit": [
{
"path": "lib/index.js",
"limit": "35 KB"
}
]
}