forked from Davidvdv/slack-people
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.71 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
{
"name": "slack-people",
"version": "0.0.1",
"main": "src/slack-people.js",
"scripts": {
"start": "node index",
"watch": "gulp",
"dev": "tsc && concurrently \"npm start\" \"gulp\"",
"dist": "concurrently \"npm start\" && \"npm build-dist\"",
"postinstall": "npm install -g typings && typings install",
"test": "echo todo link up with client/server tests",
"build-dev": "node index && gulp client.watch",
"build-dist": "gulp client.build:dist",
"build-elastic": "npm run build-dist && zip -r latest client/dist/* server/* tasks/* index.js Procfile package.json tsconfig.json typings.json gulpfile.babel.js",
"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",
"drop-dev-database": "mongo solnet-people --eval \"db.dropDatabase();\""
},
"dependencies": {
"@angular/common": "2.0.0-rc.3",
"@angular/compiler": "2.0.0-rc.3",
"@angular/core": "2.0.0-rc.3",
"@angular/http": "2.0.0-rc.3",
"@angular/platform-browser": "2.0.0-rc.3",
"@angular/platform-browser-dynamic": "2.0.0-rc.3",
"@angular/router": "3.0.0-alpha.7",
"bluebird": "^3.3.4",
"body-parser": "^1.5.0",
"compression": "^1.6.2",
"express": "~4.13.4",
"express-content-length-validator": "1.0.0",
"hash-string": "^1.0.0",
"helmet": "^0.7.1",
"jimp": "^0.2.24",
"lodash": "^4.6.1",
"mkdirp": "^0.5.1",
"mongoose": "^4.4.7",
"morgan": "^1.5.2",
"newrelic": "^1.18.2",
"reflect-metadata": "^0.1.3",
"request": "^2.73.0",
"request-promise": "^3.0.0",
"rxjs": "5.0.0-beta.6",
"sha1": "^1.1.1",
"string_score": "^0.1.22",
"systemjs": "^0.19.24",
"typescript": "^1.8.9",
"uuid": "^2.0.2",
"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-rename": "^1.2.2",
"gulp-rev-append": "^0.1.6",
"gulp-sass": "^2.3.1",
"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",
"protractor": "^3.1.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5",
"sw-precache": "^3.2.0",
"systemjs-builder": "^0.15.19",
"wiredep": "^2.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Kauabunga/slack-people.git"
},
"author": "Kauabunga",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kauabunga/slack-people/issues"
},
"homepage": "https://github.com/Kauabunga/slack-people",
"engines": {
"node": "stable"
}
}