Skip to content

Commit 0bb7148

Browse files
committed
Updated to Angular 2 beta 9
1 parent c043d04 commit 0bb7148

File tree

3 files changed

+36
-38
lines changed

3 files changed

+36
-38
lines changed

backend/package.json

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
{
2-
"name": "in-memory-todo",
2+
"name": "chuck-norris-quotes-api",
33
"version": "0.1.0",
4-
"description": "An In memory todo for Logged in and not Logged in users",
4+
"description": "Chuck Norris Quotes API",
55
"main": "server.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/auth0/in-memory-todo.git"
11+
"url": "https://github.com/auth0/angular2-authentication-sample"
1212
},
1313
"keywords": [
14-
"todo",
15-
"in",
16-
"memory",
1714
"jwt",
1815
"auth0"
1916
],
@@ -24,15 +21,15 @@
2421
},
2522
"homepage": "https://github.com/auth0/in-memory-todo",
2623
"dependencies": {
27-
"body-parser": "^1.6.5",
28-
"compression": "^1.0.11",
29-
"cors": "^2.4.1",
24+
"body-parser": "^1.15.0",
25+
"compression": "^1.6.1",
26+
"cors": "^2.7.1",
3027
"dotenv": "^0.4.0",
31-
"errorhandler": "^1.1.1",
32-
"express": "^4.8.5",
33-
"express-jwt": "^0.3.1",
34-
"jsonwebtoken": "^1.1.2",
35-
"lodash": "^2.4.1",
36-
"morgan": "^1.2.3"
28+
"errorhandler": "^1.4.3",
29+
"express": "^4.13.4",
30+
"express-jwt": "^0.3.2",
31+
"jsonwebtoken": "^1.3.0",
32+
"lodash": "^2.4.2",
33+
"morgan": "^1.7.0"
3734
}
3835
}

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -24,34 +24,34 @@
2424
},
2525
"homepage": "https://github.com/auth0/angular2-authentication-sample",
2626
"dependencies": {
27-
"angular2": "2.0.0-beta.0",
28-
"angular2-jwt": "0.1.4",
27+
"angular2": "2.0.0-beta.9",
28+
"angular2-jwt": "0.1.8",
2929
"bootstrap": "^3.3.6",
30-
"es6-promise": "^3.0.2",
31-
"es6-shim": "^0.33.3",
32-
"es7-reflect-metadata": "^1.4.0",
33-
"jwt-decode": "^1.5.0",
34-
"rxjs": "5.0.0-beta.0",
35-
"zone.js": "0.5.10"
30+
"es6-promise": "^3.1.2",
31+
"es6-shim": "^0.33.13",
32+
"es7-reflect-metadata": "^1.6.0",
33+
"jwt-decode": "^1.5.1",
34+
"rxjs": "5.0.0-beta.2",
35+
"zone.js": "0.5.15"
3636
},
3737
"devDependencies": {
38-
"css-loader": "^0.23.0",
39-
"exports-loader": "0.6.2",
38+
"css-loader": "^0.23.1",
39+
"exports-loader": "^0.6.3",
4040
"expose-loader": "^0.7.1",
41-
"file-loader": "^0.8.4",
42-
"imports-loader": "^0.6.4",
43-
"json-loader": "^0.5.3",
44-
"raw-loader": "0.5.1",
41+
"file-loader": "^0.8.5",
42+
"imports-loader": "^0.6.5",
43+
"json-loader": "^0.5.4",
44+
"raw-loader": "^0.5.1",
4545
"style-loader": "^0.13.0",
46-
"ts-loader": "^0.7.2",
47-
"tsconfig-lint": "^0.2.0",
48-
"tslint": "^3.2.0",
49-
"tslint-loader": "^2.1.0",
46+
"ts-loader": "^0.8.1",
47+
"tsconfig-lint": "^0.7.0",
48+
"tslint": "^3.5.0",
49+
"tslint-loader": "^2.1.3",
5050
"typedoc": "^0.3.12",
51-
"typescript": "^1.7.3",
52-
"typings": "^0.3.1",
53-
"url-loader": "^0.5.6",
54-
"webpack": "^1.12.9",
55-
"webpack-dev-server": "^1.12.1"
51+
"typescript": "~1.8.7",
52+
"typings": "^0.6.8",
53+
"url-loader": "^0.5.7",
54+
"webpack": "^1.12.14",
55+
"webpack-dev-server": "^1.14.1"
5656
}
5757
}

webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ module.exports = {
6767
'ignoreDiagnostics': [
6868
2403, // 2403 -> Subsequent variable declarations
6969
2300, // 2300 Duplicate identifier
70+
2304, // 2304 Cannot find name
7071
2374, // 2374 -> Duplicate number index signature
7172
2375 // 2375 -> Duplicate string index signature
7273
]

0 commit comments

Comments
 (0)