-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "prosemirror-pad",
"version": "0.1.0",
"description": "Prosemirror editor pad",
"keywords": [],
"homepage": "https://github.com/wirelineio/prosemirror-pad#readme",
"bugs": {
"url": "https://github.com/wirelineio/prosemirror-pad/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wirelineio/prosemirror-pad.git"
},
"license": "GPL-3.0",
"main": "src/index.js",
"module": "dist/es/index.js",
"scripts": {
"build": "npm run clean && npm run copy:css && babel ./src --out-dir ./dist/es --ignore \"**/*.test.js\"",
"clean": "rm -rf dist && mkdir -p ./dist/es",
"copy:css": "cp ./src/styles ./dist/es -r",
"lint": "eslint ./src"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.1",
"@wirelineio/appkit": "^0.1.16",
"memoize-one": "^5.0.4",
"mutexify": "^1.2.0",
"prosemirror-example-setup": "^1.0.1",
"prosemirror-model": "^1.7.0",
"prosemirror-schema-basic": "^1.0.1",
"prosemirror-state": "^1.2.2",
"prosemirror-view": "^1.8.9",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6",
"y-prosemirror": "^0.0.4",
"y-websocket": "1.0.0-5",
"yjs": "13.0.0-90"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"apollo-client": "^2.5.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0"
}
}