forked from FrozenPandaz/ng-universal-demo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 4.19 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ng-universal-demo",
"version": "1.0.0",
"description": "Angular sample application",
"type": "module",
"scripts": {
"build": "ng build",
"build:min": "ng build -c production",
"prebuild": "npm run version:build && npm run config:build",
"prebuild:min": "npm run clean && npm run prebuild",
"clean": "rimraf wwwroot config/configOverride.js config/configServerOverride.js config/configBrowserOverride.js version.json",
"clean:deps": "rimraf package-lock.json node_modules .angular || echo 'node_modules removed'",
"clean:all": "npm run clean && npm run clean:deps",
"version:build": "ngv -e \"node .utils/write.version.js\"",
"config:build": "node .utils/generateConfig.js",
"server": "node server.js",
"lint": "eslint app/**/*.ts",
"prestart": "npm run version:build && npm run config:build",
"start": "concurrently \"npm run server -- --devPort\" \"ng serve\""
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"author": "kukjevov",
"license": "MIT",
"dependencies": {
"@anglr/animations": "10.1.0",
"@anglr/authentication": "12.0.0",
"@anglr/common": "22.0.0",
"@anglr/datetime": "9.0.0",
"@anglr/error-handling": "14.0.0",
"@anglr/grid": "11.0.0",
"@anglr/md-help": "10.0.0",
"@anglr/notifications": "11.0.0",
"@anglr/rest": "14.0.0",
"@anglr/select": "13.0.0",
"@anglr/server-stuff": "9.0.0",
"@anglr/translate-extensions": "10.1.0",
"@angular/animations": "19.1.0",
"@angular/cdk": "19.0.5",
"@angular/common": "19.1.0",
"@angular/compiler": "19.1.0",
"@angular/core": "19.1.0",
"@angular/forms": "19.1.0",
"@angular/material": "19.0.5",
"@angular/platform-browser": "19.1.0",
"@angular/platform-browser-dynamic": "19.1.0",
"@angular/platform-server": "19.1.0",
"@angular/router": "19.1.0",
"@angular/service-worker": "19.1.0",
"@angular/ssr": "19.1.0",
"@css-styles/common": "1.6.0",
"@css-styles/themes": "1.0.0-beta.20240916065334",
"@floating-ui/dom": "1.6.11",
"@fortawesome/fontawesome-free": "6.6.0",
"@jscrpt/common": "7.0.0",
"@ngx-translate/core": "16.0.4",
"angular2-hotkeys": "16.0.1",
"crypto-js": "4.2.0",
"d3": "7.9.0",
"date-fns": "4.1.0",
"dompurify": "3.1.6",
"extend": "3.0.2",
"file-saver": "2.0.5",
"form-data": "4.0.0",
"github-slugger": "2.0.0",
"highlight.js": "11.10.0",
"html2canvas": "1.4.1",
"konami": "1.7.0",
"lodash-es": "4.17.21",
"marked": "13.0.3",
"marked-base-url": "1.1.4",
"marked-highlight": "2.1.3",
"mermaid": "10.9.1",
"ngx-scrollbar": "16.0.0",
"node-localstorage": "3.0.5",
"rxjs": "7.8.1",
"sourcemapped-stacktrace": "1.1.11",
"store": "2.0.12",
"tslib": "2.8.1",
"xhr2": "0.2.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.1.0",
"@angular/cli": "19.1.0",
"@angular/compiler-cli": "19.1.0",
"@angular/language-service": "19.1.0",
"@stylistic/eslint-plugin": "2.13.0",
"@types/compression": "1.7.5",
"@types/d3": "7.4.0",
"@types/express": "4.17.21",
"@types/file-saver": "2.0.6",
"@types/konami.js": "1.4.29",
"@types/node": "20.12.12",
"@types/node-localstorage": "1.3.0",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"body-parser": "1.20.2",
"chalk": "4.1.2",
"compression": "1.7.4",
"concurrently": "8.2.2",
"dotenv": "10.0.0",
"envsub": "4.1.0",
"eslint": "9.18.0",
"eslint-plugin-ressurectit": "0.3.0",
"express": "4.19.2",
"http-proxy-middleware": "2.0.6",
"nodejs-connect-extensions": "3.0.0",
"npm-git-version": "2.0.0",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0",
"yargs": "17.7.2"
}
}