forked from yjs/yjs-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.58 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
{
"name": "yjs-demos",
"version": "0.0.0",
"private": true,
"description": "You can ignore this package.json. We only need it for deploying the demos to our CDN.",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "rm -rf */dist */node_modules",
"test": "standard",
"start": "cd demo-server && npm start",
"dist:demo-server": "cd demo-server && npm ci",
"dist:pm-dat": "cd prosemirror-dat && npm i && npm run dist",
"dist:cm": "cd codemirror && npm ci && npm run dist",
"dist:cm6": "cd codemirror.next && npm ci && npm run dist",
"dist:atlaskit": "cd atlaskit && npm ci && npm run dist",
"dist:pm": "cd prosemirror && npm ci && npm run dist",
"dist:pm-versions": "cd prosemirror-versions && npm ci && npm run dist",
"dist:quill": "cd quill && npm ci && npm run dist",
"dist:monaco": "cd monaco && npm ci && npm run dist",
"dist:tiptap": "cd tiptap && npm ci && npm run dist",
"dist-all": "npm run dist:demo-server && npm run dist:pm-dat && npm run dist:cm && npm run dist:cm6 && npm run dist:atlaskit && npm run dist:pm && npm run dist:pm-versions && npm run dist:quill && npm run dist:monaco && npm run dist:tiptap",
"lint": "standard",
"postinstall": "npm run dist-all"
},
"author": "Kevin Jahns <[email protected]",
"license": "UNLICENSE",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"engines": {
"node": "^14.0.0"
},
"devDependencies": {
"standard": "^16.0.3",
"webpack-dev-server": "^4.6.0"
}
}