-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "spacecraft",
"version": "1.0.0",
"description": "An open-source real-time collaborative REPL and code editor",
"main": "server.js",
"scripts": {
"build": "standard --fix && webpack",
"debug": "standard --fix && webpack && DEBUG=* node server.js",
"inspect": "standard --fix && webpack && node --inspect server.js",
"server": "node server.js",
"start": "standard --fix && webpack && node server.js",
"test": "artillery run misc/benchmark/client-socketio-artillery.yml"
},
"repository": "git+https://github.com/spacecraft-repl/SpaceCraft.git",
"author": "spacecraft-repl",
"contributors": [
{
"name": "YingCGooi",
"email": "[email protected]"
},
{
"name": "Julius Zerwick",
"email": "[email protected]"
},
{
"name": "Nick Johnson",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/spacecraft-repl/SpaceCraft/issues"
},
"standard": {
"ignore": [
"misc/benchmark/*.test.js"
]
},
"homepage": "https://github.com/spacecraft-repl/SpaceCraft",
"dependencies": {
"ansi-escapes": "^3.1.0",
"body-parser": "^1.18.3",
"codemirror": "^5.41.0",
"codemirror-one-dark-theme": "^1.1.1",
"debug": "^4.1.0",
"express": "^4.16.4",
"express-static-gzip": "^1.1.3",
"node-fetch": "^2.3.0",
"node-pty": "^0.7.8",
"socket.io": "^2.1.1",
"uninstall": "0.0.0",
"xterm": "^3.8.0",
"y-array": "^10.1.4",
"y-memory": "^8.0.9",
"y-text": "^9.5.1",
"y-websockets-client": "^8.0.16",
"y-websockets-server": "^9.2.1",
"yjs": "^12.3.3",
"standard": "^12.0.1",
"standard-loader": "^6.0.1",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"supports-color": "^5.5.0"
},
"devDependencies": {
"artillery": "^1.6.0-25"
}
}