-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "react-static-markdown",
"version": "0.0.6",
"description": "Markdown files utils for react-static",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"lint": "eslint {src,test}/*.js --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tb/react-static-markdown.git"
},
"keywords": [
"makrdown",
"react",
"static"
],
"author": "Tomasz Bąk <t.bak@selleo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tb/react-static-markdown/issues"
},
"homepage": "https://github.com/tb/react-static-markdown#readme",
"dependencies": {
"globby": "^8.0.0",
"gray-matter": "^3.0.0",
"mdxc": "^1.0.0",
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2017": "^6.24.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^22.4.2",
"prettier": "^1.11.1",
"react-test-renderer": "^16.2.0"
}
}