-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.16 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
{
"name": "angular-app",
"version": "1.0.0",
"scripts": {
"start": "npm run serve:ssr",
"ng": "ng",
"serve:pt-BR": "ng serve",
"serve:en-US": "ng serve --configuration development-en-US",
"serve:prod:pt-BR": "ng serve --configuration production",
"serve:prod:en-US": "ng serve --configuration production-en-US",
"i18n": "ng extract-i18n --output-path src/i18n --out-file content.xlf",
"build": "npm run build:ssr",
"watch": "ng build --watch --configuration development",
"test": "ng test --no-watch --no-progress",
"test:dev": "ng test --watch=false",
"lint": "ng lint --fix",
"prettier": "npx prettier --write .",
"format": "npm run prettier && npm run lint",
"dev:ssr": "ng run angular-app:serve-ssr",
"serve:ssr": "node dist/angular-app/proxy-server.js",
"build:ssr": "ng build && ng run angular-app:server && cp server/proxy-server.js dist/angular-app",
"prerender": "ng run angular-app:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.11",
"@angular/cdk": "^16.1.6",
"@angular/common": "^16.2.11",
"@angular/compiler": "^16.2.11",
"@angular/core": "^16.2.11",
"@angular/forms": "^16.2.11",
"@angular/material": "^16.1.6",
"@angular/platform-browser": "^16.2.11",
"@angular/platform-browser-dynamic": "^16.2.11",
"@angular/platform-server": "^16.2.11",
"@angular/router": "^16.2.11",
"@angular/service-worker": "^16.2.11",
"@nguniversal/express-engine": "^16.1.1",
"express": "^4.15.2",
"jwt-decode": "^3.1.2",
"lodash-es": "^4.17.21",
"marked": "^4.3.0",
"ng-apexcharts": "^1.8.0",
"ng-particles": "^3.12.0",
"ngx-markdown": "^16.0.0",
"ramda": "^0.29.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"tsparticles-engine": "^2.12.0",
"tsparticles-slim": "^2.12.0",
"uuid": "^9.0.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "~16.1.4",
"@angular/compiler-cli": "^16.2.11",
"@angular/localize": "^16.2.11",
"@nguniversal/builders": "^16.1.1",
"@types/express": "^4.17.0",
"@types/jasmine": "~4.3.0",
"@types/lodash-es": "^4.17.9",
"@types/node": "^16.11.7",
"@types/ramda": "^0.29.6",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^16.0.0",
"postcss": "^8.4.26",
"prettier": "^3.0.0",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.3"
}
}