forked from microsoftgraph/microsoft-graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.4 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
64
65
66
67
68
69
{
"name": "microsoft-graph-explorer",
"version": "1.1.0",
"description": "Microsoft Graph Explorer",
"scripts": {
"build": "tsc -p src/",
"build:watch": "npm run build -- -w",
"build:aot": "ngc -p src/tsconfig-aot.json",
"build:prod": "npm run build:aot && npm run rollup",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"serve": "lite-server -c=bs-config.json",
"test": "npm run build && karma start karma.conf.js --single-run --browsers ChromeHeadless",
"test:watch": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"",
"import:samples": "node util-scripts\\query-importer.js",
"import:loc-strings": "node util-scripts\\bundle-loc-files.js",
"rollup": "rollup -c rollup-config.js",
"lint": "tslint --type-check --project src/tsconfig.json -c tslint.json"
},
"author": "",
"devDependencies": {
"@types/hellojs": "^0.2.31",
"@types/jasmine": "^2.5.47",
"@types/jquery": "^2.0.40",
"jquery": "^3.2.1",
"concurrently": "^3.2.0",
"jasmine-core": "^2.6.1",
"lite-server": "^2.3.0",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"@angular/compiler-cli": "^4.1.2",
"fast-csv": "2.4.0",
"tslint": "^5.4.3",
"typescript": "~2.3.0"
},
"dependencies": {
"@angular/animations": "^4.1.2",
"@angular/common": "^4.1.2",
"@angular/compiler": "^4.1.2",
"@angular/core": "^4.1.2",
"@angular/forms": "^4.1.2",
"@angular/http": "^4.1.2",
"@angular/platform-browser": "^4.1.2",
"@angular/platform-browser-dynamic": "^4.1.2",
"@angular/platform-server": "^4.1.2",
"@angular/router": "^4.1.2",
"angular-in-memory-web-api": "^0.3.0",
"core-js": "^2.4.1",
"hello": "https://github.com/dan-silver/hello.js.git",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"moment": "^2.21.0",
"rxjs": "^5.4.0",
"systemjs": "^0.20.12",
"zone.js": "^0.8.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/microsoft-graph-explorer.git"
},
"bugs": {
"url": "https://github.com/microsoftgraph/microsoft-graph-explorer/issues"
},
"homepage": "https://github.com/microsoftgraph/microsoft-graph-explorer#readme"
}