-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 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
{
"name": "ng-fullstack-app",
"version": "0.0.1",
"main": "src/ng-fullstack-app.js",
"scripts": {
"start": "node server/index",
"watch": "gulp",
"dev": "concurrently \"nodemon ./server/index --watch server\" \"gulp\"",
"build-dev": "gulp client.build:dev",
"build-dist": "gulp client.build:dist",
"test-client": "gulp client.unit_test",
"test-server": "mocha 'tests/server/**/*_test.js' --recursive --check-leaks --reporter min --compilers js:babel-register",
"coverage-server": "istanbul cover ./node_modules/mocha/bin/_mocha -- 'tests/server/**/*_test.js' --compilers js:babel-register",
"coveralls-server": "istanbul cover ./node_modules/mocha/bin/_mocha -- 'tests/server/**/*_test.js' --compilers js:babel-register --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"@angular/common": "^2.4.4",
"@angular/compiler": "^2.4.4",
"@angular/core": "^2.4.4",
"@angular/forms": "^2.4.4",
"@angular/http": "^2.4.4",
"@angular/platform-browser": "^2.4.4",
"@angular/platform-browser-dynamic": "^2.4.4",
"@angular/router": "^3.4.4",
"aws-sdk": "^2.28.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2016": "^6.0.11",
"babel-preset-stage-0": "^6.1.18",
"babel-regenerator-runtime": "^6.5.0",
"babel-register": "^6.7.2",
"bluebird": "^3.3.4",
"body-parser": "^1.5.0",
"compression": "^1.6.2",
"express": "~4.14.0",
"express-content-length-validator": "1.0.0",
"helmet": "^2.1.1",
"lodash": "^4.6.1",
"mongoose": "^4.4.7",
"morgan": "^1.5.2",
"newrelic": "^1.18.2",
"nodemon": "^1.9.2",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.0.0-beta.12",
"spdy": "^3.4.4",
"systemjs": "^0.19.24",
"typescript": "^2.1.5",
"zone": "^0.3.4",
"zone.js": "^0.6.23"
},
"devDependencies": {
"@types/node": "^7.0.5",
"aliv": "^1.6.0",
"babili": "0.0.6",
"browser-sync": "^2.5.2",
"chai": "^3.5.0",
"concurrently": "^2.0.0",
"coveralls": "^2.11.2",
"del": "^2.2.1",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.0.3",
"gulp-concat": "^2.4.3",
"gulp-coveralls": "^0.1.3",
"gulp-htmlmin": "^2.0.0",
"gulp-imagemin": "^3.0.1",
"gulp-rename": "^1.2.0",
"gulp-rev-append": "^0.1.6",
"gulp-sass": "^2.3.2",
"gulp-typescript": "~3.1.4",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.3",
"istanbul": "^0.4.4",
"jasmine-core": "^2.2.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-opera-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^2.1.7",
"mocha": "^2.4.5",
"protractor": "^3.1.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/anabelle/ng-fullstack-app.git"
},
"author": "anabelle",
"license": "MIT",
"bugs": {
"url": "https://github.com/anabelle/ng-fullstack-app/issues"
},
"homepage": "https://github.com/anabelle/ng-fullstack-app",
"engines": {
"node": "6.10.3"
}
}