-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.78 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "hedgehog-ide",
"version": "1.5.3",
"description": "Hedgehog IDE and Deployment Protocol",
"main": "src/server/server",
"scripts": {
"test": "nyc mocha --require ts-node/register --reporter spec --check-leaks test/**/*.spec.ts",
"coveralls": "nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"develop": "./node_modules/.bin/grunt",
"genversion": "./node_modules/.bin/genversion --es6 --semi src/server/version.ts",
"release": "./node_modules/.bin/grunt release",
"gsl-blockly": "python -m gsl_blockly",
"start": "node build/src/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRIArobotics/hedgehog-ide.git"
},
"author": "",
"license": "AGPL-3.0+",
"bugs": {
"url": "https://github.com/PRIArobotics/hedgehog-ide/issues"
},
"homepage": "https://github.com/PRIArobotics/hedgehog-ide#readme",
"dependencies": {
"@angular/cdk": "^5.2.3",
"@angular/common": "^5.2.7",
"@angular/compiler": "^5.2.7",
"@angular/core": "^5.2.7",
"@angular/forms": "^5.2.7",
"@angular/http": "^5.2.7",
"@angular/platform-browser": "^5.2.7",
"@angular/platform-browser-dynamic": "^5.2.7",
"@angular/router": "^5.2.7",
"@angular/upgrade": "^5.2.7",
"ace-builds": "^1.3.1",
"angular-in-memory-web-api": "~0.5.3",
"angular-split": "1.0.0-rc.3",
"angular-tree-component": "^7.0.1",
"angular2-materialize": "^15.1.10",
"babel-polyfill": "^6.26.0",
"brace": "^0.11.1",
"buffer": "^5.1.0",
"chalk": "^2.3.2",
"chart.js": "^2.7.2",
"core-js": "^2.5.3",
"figlet": "^1.2.0",
"hapi": "^17.2.1",
"hapi-auth-jwt2": "^8.0.0",
"hedgehog-client": "^0.7.0-rc.2",
"inert": "^5.1.2",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.2.0",
"materialize-css": "^0.100.2",
"ncp": "^2.0.0",
"ng2-charts": "^1.6.0",
"ngx-contextmenu": "^4.1.2",
"nodegit": "^0.23.0",
"passwd-linux": "^1.3.1",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.6",
"sharedb": "^1.0.0-beta.8",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"swagger-tools": "^0.10.3",
"util.promisify": "^1.0.0",
"winston": "^2.4.0",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@types/hapi": "^17.6.3",
"@types/inert": "^5.1.0",
"@types/jquery": "^3.3.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.2",
"@types/nodegit": "^0.22.4",
"@types/sinon": "^4.3.3",
"@types/socket.io": "^2.1.0",
"@types/socket.io-client": "^1.4.32",
"@types/winston": "^2.3.8",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.5.0",
"codelyzer": "^4.2.1",
"coveralls": "^3.0.2",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.2",
"genversion": "^2.2.0",
"grunt": "^1.0.4",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-run": "^0.8.0",
"grunt-ts": "^6.0.0-beta.17",
"grunt-tslint": "^5.0.1",
"grunt-webpack": "^3.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.4",
"mocha": "^5.0.1",
"mocha-lcov-reporter": "^1.3.0",
"node-sass": "^4.10.0",
"nyc": "^13.3.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"sinon": "^4.5.0",
"style-loader": "^0.20.2",
"ts-node": "^7.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^3.11.0",
"webpack-merge": "^4.1.2"
},
"nyc": {
"reporter": "html",
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"sourceMap": true,
"instrument": true
}
}