forked from wpcfan/taskmgr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.32 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
{
"name": "taskmgr",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"api": "json-server --watch mock/data.json --port 3002",
"ng": "ng",
"start": "concurrently \"ng serve --hmr -e=hmr --port=8000\" \"npm run api\"",
"prod": "concurrently \"ng serve --prod --port=8000\" \"npm run api\"",
"build:dynamic": "npm run build:client-and-server-bundles && npm run webpack:server",
"serve:dynamic": "node dist/server.js",
"build:client-and-server-bundles": "ng build --prod && ng build --prod --app 1 --output-hashing=false",
"webpack:server": "webpack --config webpack.server.config.js --progress --colors",
"start:server": "npm run build:dynamic && npm run serve:dynamic",
"start:ssr": "concurrently \"npm run start:server\" \"npm run api\"",
"build": "ng build --prod && ng build -prod -app 1 --output-hashing=false",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"hmr": "ng serve --hmr -e=hmr",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"typedoc": "typedoc"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.6",
"@angular/cdk": "^5.2.2",
"@angular/common": "^5.2.6",
"@angular/compiler": "^5.2.6",
"@angular/core": "^5.2.6",
"@angular/flex-layout": "v2.0.0-beta.12",
"@angular/forms": "^5.2.6",
"@angular/http": "^5.2.6",
"@angular/material": "^5.2.2",
"@angular/material-moment-adapter": "^5.2.2",
"@angular/platform-browser": "^5.2.6",
"@angular/platform-browser-dynamic": "^5.2.6",
"@angular/platform-server": "^5.2.6",
"@angular/router": "^5.2.6",
"@ngrx/effects": "^5.1.0",
"@ngrx/entity": "5.1.0",
"@ngrx/router-store": "^5.0.1",
"@ngrx/store": "^5.1.0",
"@ngrx/store-devtools": "^5.1.0",
"@nguniversal/express-engine": "^5.0.0-beta.5",
"@nguniversal/module-map-ngfactory-loader": "^5.0.0-beta.5",
"angular-calendar": "^0.23.6",
"core-js": "^2.5.3",
"crypto-js": "^3.1.9-1",
"date-fns": "^1.29.0",
"express": "^4.16.2",
"hammerjs": "^2.0.8",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"rxjs": "^5.5.6",
"ts-loader": "~3.5.0",
"web-animations-js": "^2.3.1",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@angular/cli": "^1.7.1",
"@angular/compiler-cli": "^5.2.6",
"@angular/language-service": "^5.2.6",
"@angularclass/hmr": "^2.1.3",
"@types/crypto-js": "^3.1.38",
"@types/express": "^4.11.1",
"@types/jasmine": "2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/lodash": "^4.14.104",
"@types/node": "~9.4.6",
"codelyzer": "~4.1.0",
"concurrently": "^3.5.1",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "^0.2.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.1",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"ngrx-store-freeze": "^0.2.1",
"protractor": "~5.3.0",
"rxjs-tslint-rules": "^3.14.0",
"ts-node": "~5.0.0",
"tslint": "~5.9.1",
"typescript": "~2.5.3",
"webpack-node-externals": "^1.6.0"
},
"description": "The Task Manager System",
"main": "index.js",
"repository": "https://github.com/wpcfan/taskmgr.git",
"author": "wpcfan <[email protected]>"
}