forked from toni-moreno/snmpcollector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (56 loc) · 1.46 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
{
"author": {
"name": "Toni Moreno",
"company": "Toni Inc"
},
"name": "snmpcollector",
"version": "0.4.0",
"repository": {
"type": "git",
"url": "http://github.com/toni-moreno/snmpcollector.git"
},
"scripts": {
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"docker-build": "docker build -t snmpcollector .",
"docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 snmpcollector",
"postinstall": "typings install"
},
"license": "Apache-2.0",
"dependencies": {
"angular2": "2.0.0-beta.14",
"angular2-jwt": "0.1.8",
"typings": "^1.0.4",
"bootstrap": "^3.3.6",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"jquery": "^2.2.3",
"lodash": "^4.11.1",
"moment": "^2.13.0",
"ng2-bootstrap": "1.0.15",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "0.19.31",
"zone.js": "^0.6.12"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.2.0",
"typescript": "1.8.9",
"typings": "^1.0.4",
"lodash": "^4.11.1",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-todo": "^4.1.0",
"karma": "~0.13.15",
"karma-chrome-launcher": "~0.2.2",
"karma-coverage": "0.5.3",
"karma-coveralls": "1.1.2",
"karma-expect": "~1.1.0",
"karma-mocha": "~0.2.1",
"mocha": "2.5.3"
}
}