-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.65 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.65 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
84
85
86
87
88
89
{
"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",
"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": "8.2.13",
"@angular/common": "8.2.13",
"@angular/compiler": "8.2.13",
"@angular/compiler-cli": "8.2.13",
"@angular/core": "8.2.13",
"@angular/forms": "8.2.13",
"@angular/platform-browser": "8.2.13",
"@angular/platform-browser-dynamic": "8.2.13",
"@angular/platform-server": "8.2.13",
"@angular/router": "8.2.13",
"@microsoft/signalr": "3.0.0",
"@microsoft/signalr-protocol-msgpack": "3.0.0",
"@ng-bootstrap/ng-bootstrap": "5.1.2",
"@nguniversal/module-map-ngfactory-loader": "8.1.1",
"@swimlane/ngx-datatable": "16.0.2",
"angularx-flatpickr": "6.1.1",
"aspnet-prerendering": "3.0.1",
"bootstrap": "4.3.1",
"date-fns": "2.6.0",
"flatpickr": "4.6.3",
"font-awesome": "4.7.0",
"lodash": "4.17.19",
"oidc-client": "1.9.1",
"preboot": "7.0.0",
"rxjs": "6.5.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.17",
"@angular/cli": "8.3.14",
"@angular/language-service": "8.2.13",
"@angular/pwa": "0.803.14",
"@angular/service-worker": "8.2.13",
"@compodoc/compodoc": "1.1.11",
"@types/jest": "^24.0.20",
"@types/node": "12.11.7",
"codelyzer": "^5.2.0",
"jest": "^24.9.0",
"jest-preset-angular": "^8.0.0",
"protractor": "5.4.2",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "3.5.3",
"webpack-bundle-analyzer": "3.6.0"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<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"
}