forked from damoqiongqiu/NiceFish
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.55 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.55 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
{
"name": "nicefish",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4201 -o",
"build": "ng build",
"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 NiceFish:server",
"webpack:server": "webpack --config webpack.server.config.js --progress --colors",
"start:server": "npm run build:ssr && npm run serve:ssr",
"start:ssr": "npm run start:server",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"bundle-report": "webpack-bundle-analyzer dist/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "8.2.0-next.1",
"@angular/cdk": "8.0.2",
"@angular/common": "8.2.0-next.1",
"@angular/compiler": "8.2.0-next.1",
"@angular/core": "8.2.0-next.1",
"@angular/forms": "8.2.0-next.1",
"@angular/platform-browser": "8.2.0-next.1",
"@angular/platform-browser-dynamic": "8.2.0-next.1",
"@angular/router": "8.2.0-next.1",
"@ckeditor/ckeditor5-angular": "1.1.0",
"@ckeditor/ckeditor5-build-classic": "12.3.1",
"@ngx-translate/core": "11.0.0",
"@ngx-translate/http-loader": "4.0.0",
"acorn": "6.0.5",
"acorn-dynamic-import": "4.0.0",
"bootstrap": "3.3.7",
"core-js": "2.5.4",
"echarts": "4.1.0",
"ngx-echarts": "4.1.0",
"font-awesome": "4.7.0",
"md5": "2.2.1",
"ngx-loading": "1.0.14",
"primeicons": "1.0.0",
"primeng": "8.0.2",
"rxjs": "6.5.2",
"rxjs-compat": "6.3.3",
"ts-helpers": "1.1.2",
"ts-loader": "5.3.3 ",
"ts-md5": "1.2.4",
"tslib": "1.9.0",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.801.1",
"@angular/cli": "8.1.1",
"@angular/compiler-cli": "8.2.0-next.1",
"@angular/language-service": "8.2.0-next.1",
"@types/express": "4.16.0",
"@types/jasmine": "2.8.8",
"@types/jasminewd2": "2.0.3",
"@types/node": "8.9.4",
"@types/echarts": "4.1.3",
"codelyzer": "4.5.0",
"jasmine-core": "2.99.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "2.0.1",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "0.2.2",
"karma-remap-istanbul": "0.6.0",
"protractor": "5.4.0",
"ts-node": "7.0.0",
"tslint": "5.11.0",
"typescript": "3.4.5",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.2.1"
}
}