-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.34 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
{
"name": "marvel-encyclopedia",
"version": "0.0.1",
"main": "src/marvel-encyclopedia.js",
"scripts": {
"start": "node index",
"start:production": "NODE_ENV=production node index",
"watch": "gulp",
"dev": "tsc && concurrently \"npm start\" \"gulp\"",
"build-dev": "node index && gulp client.watch",
"build-dist": "gulp client.build:dist",
"test-client": "gulp client.unit_test",
"test-server": "mocha ./tests/server/**/*.js --recursive --check-leaks --reporter min --compilers js:babel-register",
"coverage-server": "istanbul cover ./node_modules/mocha/bin/_mocha -- tests/**/*.js --compilers js:babel-register",
"coveralls-server": "istanbul cover ./node_modules/mocha/bin/_mocha -- tests/**/*.js --compilers js:babel-register --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"bluebird": "3.3.4",
"body-parser": "1.5.0",
"d3": "3.5.17",
"express": "~4.13.4",
"express-content-length-validator": "1.0.0",
"helmet": "0.7.1",
"jquery": "2.2.3",
"knacss": "4.4.5",
"lodash": "4.6.1",
"mongoose": "5.0.12",
"morgan": "1.5.2",
"newrelic": "1.18.2",
"ng2-nvd3": "1.1.0",
"nvd3": "1.8.3",
"reflect-metadata": "0.1.3",
"request": "2.72.0",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.24",
"systemjs-builder": "0.15.22",
"typescript": "1.8.9",
"zone.js": "0.6.12"
},
"devDependencies": {
"aliv": "~1.1.5",
"babel-preset-es2015": "6.1.18",
"babel-preset-stage-0": "6.1.18",
"babel-register": "6.7.2",
"browser-sync": "2.5.2",
"chai": "3.5.0",
"concurrently": "2.0.0",
"coveralls": "2.11.2",
"del": "1.1.1",
"gulp": "3.9.0",
"gulp-clean-css": "2.0.3",
"gulp-concat": "2.4.3",
"gulp-coveralls": "0.1.3",
"gulp-htmlmin": "1.3.0",
"gulp-imagemin": "2.4.0",
"gulp-jspm-build": "0.0.15",
"gulp-rename": "1.2.2",
"gulp-rev-append": "0.1.6",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "1.6.0",
"gulp-typescript": "2.9.2",
"gulp-uglify": "1.1.0",
"gulp-util": "3.0.3",
"istanbul": "0.3.5",
"jasmine-core": "2.1.3",
"karma": "0.12.28",
"karma-chrome-launcher": "0.1.7",
"karma-coverage": "0.2.7",
"karma-firefox-launcher": "0.1.3",
"karma-ie-launcher": "0.1.5",
"karma-jasmine": "0.3.3",
"karma-ng-html2js-preprocessor": "0.1.2",
"karma-opera-launcher": "0.1.0",
"karma-phantomjs-launcher": "0.1.4",
"karma-safari-launcher": "0.1.1",
"mocha": "2.4.5",
"node-sass": "4.8.3",
"protractor": "3.1.0",
"require-dir": "0.3.2",
"run-sequence": "1.1.5",
"wiredep": "2.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kamiranoff/marvel-encyclopedia.git"
},
"author": "kamiranoff",
"license": "MIT",
"bugs": {
"url": "https://github.com/kamiranoff/marvel-encyclopedia/issues"
},
"homepage": "https://github.com/kamiranoff/marvel-encyclopedia",
"engines": {
"node": "stable"
}
}