forked from auth0-blog/angular2-authentication-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"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": {
"server": "cd backend && npm i && node server.js",
"front": "webpack-dev-server --inline -d --colors --display-error-details --display-cached --port 3000",
"start": "npm run front",
"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.44",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.2",
"rtts_assert": "2.0.0-alpha.37",
"rx": "4.0.6",
"zone.js": "0.5.8",
"bootstrap": "3.3.5",
"jwt-decode": "1.4.0",
"whatwg-fetch": "0.10.0",
"when": "3.7.3"
},
"devDependencies": {
"css-loader": "0.20.1",
"exports-loader": "0.6.2",
"expose-loader": "0.7.0",
"file-loader": "0.8.4",
"html-webpack-plugin": "1.6.2",
"imports-loader": "0.6.5",
"json-loader": "0.5.3",
"loader-utils": "0.2.11",
"style-loader": "0.12.4",
"ts-loader": "0.5.6",
"typescript": "1.6.2",
"url-loader": "0.5.6",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.1",
"xtend": "4.0.0"
}
}