-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.54 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
79
80
81
82
83
{
"name": "aspnetnetcore",
"version": "0.0.0",
"private": true,
"keywords": [
"aspnetcore",
"entityframework core",
"angular",
"oauth",
"angular-cli",
"typescript"
],
"repository": "git+https://github.com/asadsahi/AspNetCoreSpa.git",
"author": "Asad Sahi <asadazmat@gmail.com>",
"scripts": {
"ng": "ng",
"clean:install": "rimraf node_modules & yarn",
"start": "ng serve",
"build": "ng build --prod",
"build:ssr": "npm run build --project=ssr",
"build:apiDef": "nswag run ../NSwagGenerator.nswag /runtime:NetCore21",
"lint": "ng lint",
"e2e": "ng e2e",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.json",
"analyze": "npm run build -- --stats-json && webpack-bundle-analyzer dist/aspnetcorespa/stats.json"
},
"dependencies": {
"@angular/animations": "6.1.2",
"@angular/common": "6.1.2",
"@angular/compiler": "6.1.2",
"@angular/compiler-cli": "6.1.2",
"@angular/core": "6.1.2",
"@angular/forms": "6.1.2",
"@angular/http": "6.1.2",
"@angular/platform-browser": "6.1.2",
"@angular/platform-browser-dynamic": "6.1.2",
"@angular/platform-server": "6.1.2",
"@angular/router": "6.1.2",
"@aspnet/signalr": "1.0.2",
"@aspnet/signalr-protocol-msgpack": "1.0.2",
"@nguniversal/module-map-ngfactory-loader": "6.0.0",
"angular-oauth2-oidc": "4.0.2",
"aspnet-prerendering": "3.0.1",
"core-js": "2.5.7",
"preboot": "6.0.0-beta.4",
"rxjs": "6.2.2",
"sanitize.css": "6.0.0",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.7.2",
"@angular/cli": "6.1.2",
"@angular/compiler-cli": "6.1.2",
"@angular/language-service": "6.1.2",
"@angular/service-worker": "6.1.2",
"@compodoc/compodoc": "1.1.3",
"@types/node": "10.5.7",
"codelyzer": "4.4.3",
"jest": "23.4.2",
"jest-preset-angular": "6.0.0",
"protractor": "5.4.0",
"ts-node": "7.0.0",
"tslint": "5.11.0",
"typescript": "2.9.2",
"webpack-bundle-analyzer": "2.13.1",
"nswag": "11.18.1"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/src/setupJest.ts",
"moduleNameMapper": {
"\\.(jpg|jpeg|png)$": "<rootDir>/__mocks__/image.js",
"@app/(.*)": "<rootDir>/src/app/$1",
"assets/(.*)": "<rootDir>/src/assets/$1",
"environments/(.*)": "<rootDir>/src/environments/$1"
}
},
"license": "MIT"
}