-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
85 lines (85 loc) · 2.92 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
{
"name": "ng-nest",
"version": "19.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:ng-nest-ui": "ng build ng-nest-ui && npm run copy:scss && npm run build:scss && npm run clear:examples",
"build:docs": "npm run build:scripts && node ./scripts/build/generate/docs",
"build:scripts": "tsc -p scripts",
"build:scss": "sass ./lib/ng-nest/ui/style/core/index.scss ./dist/ng-nest/ui/style/core/index.css",
"build:all": "npm run build:ng-nest-ui && npm run build:docs && npm run build",
"copy:scss": "cpx ./lib/ng-nest/ui/style/**/* ./dist/ng-nest/ui/style",
"clear:examples": "npm run build:scripts && node ./scripts/build/generate/clear-examples",
"test": "ng test ng-nest-site",
"test:ng-nest-ui": "ng test ng-nest-ui",
"lint": "ng lint",
"extract": "ng xi18n --output-path=locale",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"analyze-webpack": "ng build --stats-json && webpack-bundle-analyzer dist/ng-nest-site/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/platform-server": "^19.0.0",
"@angular/router": "^19.0.0",
"@angular/service-worker": "^19.0.0",
"@angular/ssr": "^19.0.0",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"core-js": "^3.37.1",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"marked": "^12.0.1",
"marked-highlight": "^2.1.1",
"prismjs": "^1.29.0",
"remark": "^13.0.0",
"rxjs": "~7.8.0",
"sass": "^1.77.2",
"tslib": "^2.3.0",
"yaml-front-matter": "^4.1.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular-devkit/core": "^19.0.0",
"@angular-devkit/schematics": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@stackblitz/sdk": "^1.10.0",
"@types/estree": "^1.0.5",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"@types/yaml-front-matter": "^4.1.3",
"codelyzer": "^6.0.2",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"jasmine-core": "~5.4.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": "^19.0.0",
"prettier": "^3.3.3",
"protractor": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"webpack-bundle-analyzer": "^4.10.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}