-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "linear-collab",
"version": "0.2.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "node src/server.js",
"release": "sh extpackage.sh",
"build": "webpack-cli",
"build:watch": "webpack-cli -w"
},
"standard": {
"global": [
"chrome",
"fetch"
]
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-async-generator-functions": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"node-env-file": "^0.1.8",
"standard": "^14.3.4",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@babel/preset-react": "^7.10.4",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"prosemirror-collab": "^1.2.2",
"prosemirror-commands": "^1.1.4",
"prosemirror-history": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-model": "^1.11.0",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-schema-list": "^1.1.4",
"prosemirror-state": "^1.3.3",
"prosemirror-transform": "^1.2.8",
"prosemirror-view": "^1.15.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1",
"ws": "^7.3.1"
}
}