-
Notifications
You must be signed in to change notification settings - Fork 335
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "angular2-authentication-sample",
"version": "0.0.1",
"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) <[email protected]>",
"PatrickJS <[email protected]>",
"Ryan Chenkie <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/angular2-authentication-sample/issues"
},
"homepage": "https://github.com/auth0/angular2-authentication-sample",
"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/platform-server": "2.0.1",
"@angular/router": "3.0.1",
"angular2-jwt": "0.1.23",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"jwt-decode": "^2.0.1",
"rxjs": "5.0.0-beta.12",
"zone.js": "~0.6.25"
},
"devDependencies": {
"css-loader": "^0.25.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"file-loader": "^0.9.0",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.1",
"tsconfig-lint": "^0.12.0",
"tslint": "^3.7.1",
"tslint-loader": "^2.1.3",
"typedoc": "^0.4.3",
"typescript": "~2.0.3",
"typings": "^1.3.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
}
}