This repository was archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 KB
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
{
"name": "angular-aadcb2c-sample",
"version": "0.1.0",
"description": "Azure AD B2C sample application for Angular",
"main": "app/app.ts",
"scripts": {
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" \"node api\\server.js \"",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lint": "tslint ./app/**/*.ts -t verbose",
"lite": "lite-server --config=liteserver-app-config.json",
"test-conc": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"test": "tsc && karma start karma.conf.js --single-run",
"typings": "typings",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SMK1085/angular-aadcb2c-sample.git"
},
"keywords": [
"aad",
"azure",
"graph",
"openid",
"connect",
"spa",
"angular"
],
"author": {
"name": "Sven Maschek",
"email": "smaschek85@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SMK1085/angular-aadcb2c-sample/issues"
},
"homepage": "https://github.com/SMK1085/angular-aadcb2c-sample#readme",
"dependencies": {
"@angular/common": "~2.1.0",
"@angular/compiler": "~2.1.0",
"@angular/core": "~2.1.0",
"@angular/forms": "~2.1.0",
"@angular/http": "~2.1.0",
"@angular/platform-browser": "~2.1.0",
"@angular/platform-browser-dynamic": "~2.1.0",
"@angular/router": "~3.1.0",
"@angular/upgrade": "~2.1.0",
"bootstrap": "4.0.0-alpha.4",
"systemjs": "0.19.39",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.25",
"es6-shim": "^0.35.1",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"request": "^2.75.0"
},
"devDependencies": {
"codelyzer": "^1.0.0-beta.2",
"canonical-path": "0.0.2",
"concurrently": "^2.2.0",
"lite-server": "^2.2.2",
"lodash": "^4.15.0",
"tslint": "^3.15.1",
"typescript": "^1.8.10",
"typings": "^1.3.3",
"jasmine-core": "~2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.0.2",
"protractor": "^4.0.5",
"rimraf": "^2.5.4"
}
}