-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.38 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "taskmgr",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"api": "json-server --watch mock/data.json --port 3002",
"ng": "ng",
"start": "concurrently \"ng serve --port=8000\" \"npm run api\"",
"prod": "concurrently \"ng serve --prod --port=8000\" \"npm run api\"",
"build:ssr": "npm run build:client-and-server-bundles && npm run webpack:server",
"serve:ssr": "node dist/server.js",
"build:client-and-server-bundles": "ng build --prod && ng run taskmgr:server",
"webpack:server": "webpack --config webpack.server.config.js --progress --colors",
"start:server": "npm run build:ssr && npm run serve:ssr",
"start:ssr": "concurrently \"npm run start:server\" \"npm run api\"",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"typedoc": "typedoc"
},
"private": true,
"dependencies": {
"@angular/animations": "7.2.7",
"@angular/cdk": "7.3.3",
"@angular/common": "7.2.7",
"@angular/core": "7.2.7",
"@angular/flex-layout": "7.0.0-beta.22",
"@angular/forms": "7.2.7",
"@angular/http": "7.2.7",
"@angular/material": "7.3.3",
"@angular/material-moment-adapter": "7.3.3",
"@angular/platform-browser": "7.2.7",
"@angular/platform-browser-dynamic": "~8.0.0",
"@angular/router": "7.2.7",
"@ngrx/effects": "7.3.0",
"@ngrx/entity": "7.3.0",
"@ngrx/router-store": "7.3.0",
"@ngrx/store": "7.3.0",
"@ngrx/store-devtools": "7.3.0",
"@nguniversal/common": "7.1.0",
"@nguniversal/express-engine": "7.1.0",
"@nguniversal/module-map-ngfactory-loader": "7.1.0",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"angular-calendar": "0.26.4",
"core-js": "2.5.7",
"crypto-js": "3.1.9-1",
"date-fns": "1.29.0",
"express": "4.16.4",
"hammerjs": "2.0.8",
"lodash": "^4.17.20",
"moment": "2.24.0",
"node-sass": "^4.14.1",
"rxjs": "^6.5.2",
"ts-loader": "^5.3.1",
"tslib": "^1.9.0",
"web-animations-js": "2.3.1",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.10.0",
"@angular-devkit/core": "^7.1.0",
"@angular-devkit/schematics": "^7.1.0",
"@angular/cli": "7.3.3",
"@angular/compiler": "^8.1.0",
"@angular/compiler-cli": "^8.1.0",
"@angular/language-service": "7.2.7",
"@angular/platform-server": "^8.1.0",
"@angularclass/hmr": "2.1.3",
"@types/crypto-js": "3.1.43",
"@types/express": "4.16.0",
"@types/jasmine": "3.3.0",
"@types/jasminewd2": "~2.0.3",
"@types/lodash": "4.14.118",
"@types/node": "~10.12.10",
"codelyzer": "~4.5.0",
"concurrently": "4.1.0",
"http-server": "^0.12.3",
"jasmine-core": "~3.3.0",
"jasmine-marbles": "0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ngrx-store-freeze": "0.2.4",
"protractor": "~5.4.1",
"rxjs-tslint-rules": "~4.13.0",
"ts-node": "~7.0.1",
"tslint": "~5.11.0",
"typescript": "3.4.5",
"udk": "^1.0.0",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "1.7.2"
},
"description": "Task Manager System",
"main": "index.js"
}