forked from NG-NEST/ng-nest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.56 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
{
"name": "ng-nest",
"version": "13.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "node --max_old_space_size=81920 ./node_modules/@angular/cli/bin/ng build",
"build:ng-nest-ui": "node --max_old_space_size=81920 ./node_modules/@angular/cli/bin/ng build ng-nest-ui && npm run copy:scss && npm run build:scss",
"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",
"copy:scss": "cpx ./lib/ng-nest/ui/style/**/* ./dist/ng-nest/ui/style",
"test": "ng test ng-nest-site",
"test:ng-nest-ui": "ng test ng-nest-ui",
"lint": "ng lint",
"e2e": "ng e2e",
"extract": "ng xi18n --output-path=locale",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.2",
"@angular/cdk": "^13.3.2",
"@angular/common": "~13.3.2",
"@angular/compiler": "~13.3.2",
"@angular/core": "~13.3.2",
"@angular/forms": "~13.3.2",
"@angular/platform-browser": "~13.3.2",
"@angular/platform-browser-dynamic": "~13.3.2",
"@angular/router": "~13.3.2",
"@angular/service-worker": "~13.3.2",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.19.1",
"fs-extra": "^9.1.0",
"prismjs": "^1.25.0",
"remark": "^13.0.0",
"rxjs": "~7.4.0",
"sass": "^1.45.0",
"tslib": "^2.3.0",
"yaml-front-matter": "^4.1.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.2",
"@angular-devkit/core": "~13.3.2",
"@angular-devkit/schematics": "~13.3.2",
"@angular/cli": "~13.3.2",
"@angular/compiler-cli": "~13.3.2",
"@stackblitz/sdk": "^1.4.0",
"@types/estree": "^0.0.50",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "~3.10.0",
"@types/lodash": "^4.14.176",
"@types/marked": "^1.2.2",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.2",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"marked": "^2.1.3",
"ng-packagr": "^13.0.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"typescript": "~4.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}