-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "xde",
"version": "1.0.0",
"description": "A cross-device IDE that runs in the browser.",
"main": "server.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon --inspect=0.0.0.0 --watch server server/index.js",
"browserify": "gulp browserify -d",
"gulp": "gulp"
},
"author": "Nicolas Kick",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"acorn": "^6.2.0",
"bootstrap": "^4.3.1",
"browser-sync": "^2.26.7",
"circular-json": "^0.5.9",
"codemirror": "^5.48.0",
"css-parse": "^2.0.0",
"csslint": "^1.0.5",
"dom-inspector": "https://github.com/nickasd/dom-inspector",
"express": "^4.17.1",
"hotkeys-js": "^3.6.11",
"htmlhint": "^0.11.0",
"javascript-console": "git+https://github.com/nickasd/javascript-console.git",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"jshint": "^2.10.2",
"parse5": "^5.1.0",
"reconnecting-websocket": "^4.1.10",
"sharedb": "^1.0.0-beta.23",
"sharedb-codemirror": "git+https://github.com/nickasd/sharedb-codemirror.git",
"spectrum-colorpicker": "^1.8.0",
"split-pane": "^0.5.1",
"stacktrace-js": "^2.0.0",
"tern": "^0.24.0",
"uuid": "^3.0.1",
"walk": "^2.3.9",
"websocket-json-stream": "^0.0.3",
"ws": "^7.0.1"
},
"devDependencies": {
"browserify": "^16.3.0",
"gulp": "^4.0.2",
"nodemon": "^1.19.1",
"watchify": "^3.9.0"
}
}