-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.38 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mdx-observable",
"version": "0.2.0",
"description": "Global state for MDX documents",
"main": "index.js",
"module": "es/index.js",
"repository": "github:alexkrolick/mdx-observable",
"devDependencies": {
"@mdx-js/parcel-plugin-mdx": "^0.15.0",
"@mdx-js/tag": "^0.13.1-1",
"@reach/router": "^1.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6",
"babel-eslint": "^8.2.2",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-inline-environment-variables": "^0.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.2",
"doctoc": "^1.3.1",
"eslint": "^4.1.1",
"eslint-config-prettier": "^3.0.1",
"eslint-config-react-app": "^3.0.0-next.3e165448",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.8.2",
"gzip-size": "^4.1.0",
"jest": "^23.5.0",
"npm-run-all": "^4.1.3",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2",
"pretty-bytes": "^4.0.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-katex": "^2.0.2",
"react-powerplug": "^1.0.0-rc.1",
"react-testing-library": "^5.0.0",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"victory": "^30.3.0",
"watch-cli": "^0.2.2",
"weak-key": "^1.0.1"
},
"scripts": {
"demo:ok-mdx": "mdx demo --open",
"predemo:ok-mdx": "npm-run-all -s clean build",
"demo:parcel:dev": "parcel demo/index.html --open",
"build:parcel": "parcel build demo/index.html",
"predemo:parcel:dev": "npm-run-all -s clean build",
"predemo:parcel:build": "npm-run-all -s clean build",
"netlify": "npm-run-all -s lint clean build build:parcel build:redirects",
"build": "node build/build.js",
"build:redirects": "cp ./_redirects ./dist/",
"watch": "watch -p \"src/**/*.js\" -c \"yarn build\"",
"clean": "rm -rf lib es umd dist index.js",
"test": "jest",
"fix:js": "eslint ./src --max-warnings=0 --fix",
"fix:md:toc": "doctoc README.md --github",
"fix:md:format": "prettier --write README.md",
"fix": "npm-run-all fix:js -s fix:md:toc fix:md:format",
"lint:js": "eslint ./src --max-warnings=0",
"lint:md": "prettier --list-different README.md",
"lint": "npm-run-all lint:*",
"prepublishOnly": "npm-run-all -s clean lint build"
},
"files": [
"es/",
"umd/",
"lib/",
"index.js"
],
"keywords": [
"react",
"mdx",
"jsx",
"state",
"observable",
"callbag"
],
"author": "Alex Krolick",
"license": "SEE LICENSE IN LICENSE",
"buildSrcDir": "src",
"buildOutDir": "lib",
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"prettier",
"prettier/react",
"plugin:prettier/recommended",
"react-app"
],
"rules": {
"prettier/prettier": 2
}
},
"dependencies": {},
"peerDependencies": {
"react": "^16.2"
}
}