-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3 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": "@coralproject/mdx-book",
"version": "0.0.4",
"description": "A simple mdx documentation generator inspired by docz",
"module": "./lib/index.js",
"main": "./cjs/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib",
"cjs",
"loader.js"
],
"scripts": {
"lint": "npm-run-all --parallel lint:*",
"lint:eslint": "eslint src/*.{ts,tsx} src/**/*.{ts,tsx} demo/*.tsx demo/**/*.tsx",
"lint:tsc": "tsc --project ./src --noEmit",
"build": "npm-run-all --parallel build:*",
"build:lib": "rm -rf ./lib && NODE_ENV=production tsc --project ./src --declaration --sourceMap --noEmit false --outDir lib --module es6",
"build:cjs": "rm -rf ./cjs && NODE_ENV=production tsc --project ./src --declaration --sourceMap --noEmit false --outDir cjs --module commonjs",
"build:demo": "rm -rf ./demo/dist && NODE_ENV=production webpack --config demo/webpack.config.js --context demo/",
"dev": "NODE_ENV=development webpack-dev-server --config demo/webpack.config.js --context demo/",
"release": "npm version -m '@coralproject/mdx-loader release %s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coralproject/mdx-book.git"
},
"keywords": [
"mdx",
"docs"
],
"author": "The Coral Project",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coralproject/mdx-book/issues"
},
"homepage": "https://github.com/coralproject/mdx-book#readme",
"dependencies": {
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"gray-matter": "^4.0.2",
"prism-react-renderer": "^1.1.1",
"react-live": "^2.2.2",
"rehype-docz": "^2.3.0",
"rehype-slug": "^3.0.0",
"remark-docz": "^2.1.0",
"stringify-object": "^3.3.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/mdx-js__react": "^1.5.2",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"core-js": "^3.6.5",
"css-loader": "^4.2.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"html-webpack-plugin": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.7",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"browsers": [
">1%",
"last 4 versions",
"Firefox ESR",
"IE 11",
"not dead"
]
}