forked from yjs/yjs-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "yjs-demos",
"version": "0.0.0",
"private": true,
"description": "You can ignore this package.json. We only need it for eploying the demos to our CDN.",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "make clean",
"test": "standard",
"start": "make serve",
"demo-server": "cd demo-server && npm ci && npm start",
"dist": "make dist",
"lint": "standard",
"container:build": "docker build . -t yjs-demos",
"container:run": "docker run -p 3000:3000 --name yjs-demos yjs-demos",
"container:stop": "docker stop yjs-demos && docker remove yjs-demos"
},
"author": "Kevin Jahns <[email protected]",
"license": "UNLICENSE",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"standard": "^16.0.3",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.3"
}
}