-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "burdoc",
"version": "0.0.1-beta.11",
"main": "lib/core",
"license": "MIT",
"files": [
"/bin/**",
"/lib/**",
"/babel.js",
"/burdocImportsLoader.js"
],
"bin": {
"burdoc": "bin/dev",
"burdoc-build": "bin/build",
"burdoc-export": "bin/export",
"burdoc-start": "bin/start"
},
"dependencies": {
"@babel/runtime": "7.0.0-rc.1",
"babel-plugin-module-resolver": "3.1.1",
"codemirror": "5.39.2",
"common-tags": "1.8.0",
"cosmiconfig": "5.0.6",
"immutability-helper": "2.7.1",
"koa": "2.5.2",
"koa-router": "7.4.0",
"loader-utils": "1.1.0",
"lodash": "4.17.10",
"mime-types": "2.1.19",
"next": "7.0.0-canary.0",
"prop-types": "15.6.2",
"react-display-name": "0.2.4",
"react-markdown": "3.4.1",
"webpack-sources": "1.1.0"
},
"devDependencies": {
"rimraf": "2.6.2",
"rollup": "0.64.1",
"rollup-plugin-babel": "4.0.0-beta.5",
"rollup-plugin-commonjs": "9.1.5",
"rollup-plugin-node-resolve": "3.3.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"scripts": {
"build": "rollup -c",
"clean": "rimraf lib",
"prebuild": "yarn clean",
"prepublish": "yarn build"
}
}