-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "gdbface",
"version": "1.0.4",
"description": "GDB frontend",
"bin": {"gdbface" : "./gdbface.js"},
"scripts": {
"prebuild" : "rm -rf client; mkdir client;",
"postbuild" : "cp web/index.html client/",
"build" : "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ben-ha/gdbface.git"
},
"author": "Ben-Ha",
"license": "MIT",
"homepage": "https://github.com/ben-ha/gdbface",
"dependencies": {
"bootstrap": "^3.3.7",
"codemirror": "^5.22.0",
"express": "^4.14.0",
"jquery": "^3.1.1",
"pty.js": "^0.3.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"socket.io": "^1.7.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"bootstrap-webpack": "0.0.5",
"css-loader": "^0.26.1",
"less": "^2.7.1",
"file-loader": "^0.9.0",
"imports-loader": "^0.7.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"less-loader": "^2.2.3",
"bootstrap-webpack": "0.0.5",
"webpack": "^1.15.0"
}
}