-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.18 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.18 KB
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
{
"name": "statistics",
"version": "1.0.1",
"description": "Statistic visualization",
"private": true,
"main": "index.js",
"scripts": {
"start": "supervisor -i node_modules,.git,app -e html,js server",
"watch": "watchify app/app.js -d -v -o public/app.js",
"build-js": "browserify app/app.js -t babelify | uglifyjs -c > public/app.min.js",
"build-css": "node-sass --include-path app app/app.scss public/main.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"e2e-tests": "protractor protractor.conf.js",
"unittest-fe": "mocha \"app/**/*.test.js\"",
"unittest-be": "mocha \"server/**/*.test.js\"",
"unittest-angular": "karma start"
},
"author": "Antti Manninen <antti.mann@gmail.com>",
"dependencies": {
"bluebird": "^3.3.5",
"boom": "^3.1.2",
"chart.js": "^2.0.2",
"good": "^6.6.0",
"good-console": "^5.3.1",
"hapi": "^13.2.2",
"hapi-swagger": "^5.0.1",
"iconv-lite": "^0.4.13",
"inert": "^3.2.0",
"jade": "^1.11.0",
"lodash": "^4.6.1",
"mongodb": "^2.1.16",
"request": "^2.72.0",
"vision": "^4.0.1"
},
"devDependencies": {
"angular": "^1.5.3",
"angular-chart.js": "^1.0.0-alpha4",
"angular-local-storage": "^0.2.7",
"angular-mocks": "^1.5.3",
"angular-resource": "^1.5.3",
"angular-route": "^1.5.3",
"angular-ui-bootstrap": "^1.3.1",
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chart.js": "^1.1.1",
"font-awesome": "^4.5.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.2",
"karma-ng-html2js-preprocessor": "^0.2.2",
"karma-ng-jade2js-preprocessor": "^0.2.1",
"moment": "^2.12.0",
"node-sass": "^3.4.2",
"nodemon": "^1.9.1",
"npm": "^3.8.6",
"protractor": "^3.2.2",
"q": "^1.4.1",
"requirejs": "^2.2.0",
"sinon": "^1.17.3",
"uglifyify": "^3.0.1",
"uglifyjs": "^2.4.10",
"watchify": "^3.7.0"
}
}