This repository has been archived by the owner on Oct 15, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.6 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
{
"name": "Loto-Lux",
"version": "1.0.1",
"description": "Application présentant les résultats de différentes loteries",
"engines": {
"node": "6.5.0"
},
"main": "dist/server/server.js",
"scripts": {
"start": "concurrent --kill-others \"gulp watch\" \"gulp start\"",
"test": "karma start karma.conf.js",
"posttest": "node_modules/.bin/remap-istanbul -i coverage/coverage.json -o coverage -t html",
"coverage": "correct-coverage && http-server -c-1 -o -p 9875 ./coverage",
"build-start": "gulp build && npm run start",
"production": "pm2 start dist/server/server.js && pm2 logs all"
},
"author": {
"name": "Benjamin Rancourt",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ranb2002/Loto-Lux.git"
},
"license": "MIT",
"private": false,
"dependencies": {
"@angular/common": "^2.0.1",
"@angular/compiler": "^2.0.1",
"@angular/core": "^2.0.1",
"@angular/forms": "^2.0.1",
"@angular/http": "^2.0.1",
"@angular/platform-browser": "^2.0.1",
"@angular/platform-browser-dynamic": "^2.0.1",
"@angular/router": "^3.0.1",
"angular2-jwt": "^0.1.23",
"angular2-moment": "^1.0.0-beta.1",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"browser-sync": "^2.17.0",
"cheerio": "^0.22.0",
"concurrently": "^3.1.0",
"core-js": "^2.4.1",
"del": "^2.2.2",
"es6-shim": "^0.35.1",
"express": "^5.0.0-alpha.2",
"firebase": "^3.4.1",
"moment": "^2.15.1",
"pm2": "^2.0.18",
"reflect-metadata": "^0.1.8",
"replace": "^0.3.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"run-sequence": "^1.2.2",
"rxjs": "^5.0.0-beta.12",
"systemjs": "^0.19.39",
"systemjs-builder": "^0.15.32",
"tslint": "^3.15.1",
"typescript": "^2.0.3",
"zone.js": "^0.6.25"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.13",
"gulp-concat": "^2.6.0",
"gulp-csslint": "^1.0.0",
"gulp-environments": "^0.1.1",
"gulp-nodemon": "^2.2.1",
"gulp-purifycss": "^0.2.0",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^6.1.2",
"gulp-typescript": "^3.0.1",
"gulp-typings": "^2.0.4",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"http-server": "^0.9.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-typescript": "^2.0.6",
"npm-check": "^5.2.3",
"remap-istanbul": "^0.6.4"
}
}