-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.84 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
{
"name": "@fugazi/webclient",
"version": "1.1.21",
"description": "web based terminal application for executing local and remote commands",
"dependencies": {
"lz-string": "1.4.4",
"marked": "^0.3.9",
"perfect-scrollbar": "0.7.1",
"react": "15.6.1",
"react-dom": "15.6.1"
},
"devDependencies": {
"@types/google.analytics": "0.0.34",
"@types/lz-string": "1.3.32",
"@types/marked": "0.0.28",
"@types/perfect-scrollbar": "0.7.0",
"@types/react": "15.0.38",
"@types/react-dom": "15.5.1",
"html-webpack-plugin": "^2.28.0",
"loglevel": "^1.4.1",
"npm-run-all": "^4.0.1",
"rimraf": "2.6.1",
"typescript": "^2.4.2",
"webpack": "^3.2.0",
"webpack-config-utils": "^2.3.0",
"webpack-dev-server": "^2.6.0"
},
"types": "./scripts/bin/",
"scripts": {
"clean": "rimraf scripts/bin modules/scripts/bin modules/restheart/scripts/bin",
"transpile-core": "tsc -p scripts",
"transpile-modules": "tsc -p modules/scripts",
"transpile": "run-s clean transpile-core transpile-modules",
"transpile-core-watch": "npm run transpile-core -- --watch",
"transpile-modules-watch": "npm run transpile-modules -- --watch",
"transpile-watch": "run-p transpile-core-watch transpile-modules-watch",
"serve": "webpack-dev-server --no-info --colors --port 3330",
"serve-public": "webpack-dev-server --no-info --colors --port 3330 --host 0.0.0.0",
"dev": "npm-run-all transpile -p transpile-watch serve",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "webpack --env.prod --progress --colors",
"build": "run-s transpile bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fugazi-io/webclient"
},
"author": "Nitzan Tomer <nitzan.tomer@gmail.com> (https://github.com/nitzantomer)",
"license": "ISC",
"bugs": {
"url": "https://github.com/fugazi-io/webclient/issues"
},
"homepage": "http://fugazi.io"
}