-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 956 Bytes
/
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
{
"name": "monitoring",
"version": "0.0.0",
"private": true,
"dependencies": {
},
"devDependencies": {
"bower": "^1.4.1",
"colors": "^1.1",
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.10.1",
"express": "^4.12.3",
"jasmine-core": "^2.3.2",
"karma": "^0.12.31",
"karma-coverage": "^0.3.1",
"karma-jasmine": "^0.3.5",
"karma-jshint-preprocessor": "0.0.5",
"karma-ng-html2js-preprocessor": "^0.1.2",
"karma-phantomjs-launcher": "^0.1.4",
"karma-spec-reporter": "0.0.19",
"phantomjs": "^1.9.16",
"shelljs": "^0.2.6"
},
"config": {
"port": 8080,
"static": ["src/web", "bower_components"],
"fixtures": "test/fixtures"
},
"scripts": {
"postinstall": "bower install",
"start": "node src/server/express_server.js"
}
}