forked from auth0-blog/angular2-authentication-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "angular2-authentication-sample",
"version": "0.0.0",
"description": "This is a sample that shows how to add authentication to an Angular 2 (ng2) app",
"main": "",
"scripts": {
"start": "webpack-dev-server --inline -d --colors --display-error-details --display-cached --port 3000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/angular2-authentication-sample.git"
},
"contributors": [
"Martin Gontovnikas (http://gon.to) <martin@gon.to>",
"PatrickJS <github@gdi2290.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/angular2-authentication-sample/issues"
},
"homepage": "https://github.com/auth0/angular2-authentication-sample",
"dependencies": {
"angular2": "2.0.0-alpha.30",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.0",
"rtts_assert": "2.0.0-alpha.29",
"rx": "^2.5.3",
"zone.js": "^0.5.0",
"bootstrap": "~3.3.4",
"jwt-decode": "~1.1.0",
"whatwg-fetch": "~0.7.0",
"when": "~3.7.3"
},
"devDependencies": {
"css-loader": "^0.14.4",
"xtend": "^4.0.0",
"loader-utils": "^0.2.9",
"exports-loader": "^0.6.2",
"expose-loader": "^0.7.0",
"file-loader": "^0.8.1",
"html-webpack-plugin": "^1.4.0",
"imports-loader": "^0.6.3",
"json-loader": "^0.5.1",
"style-loader": "^0.12.2",
"typescript": "^1.5.0-beta",
"typescript-simple-loader": "^0.1.2",
"url-loader": "^0.5.5",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
}
}