-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
71 lines (71 loc) · 2.27 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
{
"name": "@nestjs/ng-universal",
"version": "8.0.0",
"description": "Nest - modern, fast, powerful node.js web framework (@ng-universal)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"test:schematics": "jest --run-in-band --silent",
"build": "npm run build:lib && npm run build:schematics",
"build:lib": "tsc -p tsconfig.json",
"build:schematics": "tsc -p tsconfig.schematics.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next"
},
"peerDependencies": {
"@angular/common": "^14.0.0 || ^15.0.0 || ^16.0.0",
"@angular/platform-server": "^14.0.0 || ^15.0.0 || ^16.0.0",
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"@nestjs/platform-express": "^9.0.0 || ^10.0.0",
"@nguniversal/common": "^14.0.0 || ^15.0.0 || ^16.0.0",
"@nguniversal/express-engine": "^14.0.0 || ^15.0.0 || ^16.0.0",
"express": "^4.17.1",
"zone.js": "^0.12.0 || ^0.13.0"
},
"devDependencies": {
"@angular/common": "16.2.3",
"@angular/platform-server": "16.2.3",
"@commitlint/cli": "17.7.1",
"@commitlint/config-angular": "17.7.0",
"@nestjs/common": "10.2.3",
"@nestjs/core": "10.2.3",
"@nguniversal/common": "16.2.0",
"@nguniversal/express-engine": "16.2.0",
"@types/jest": "29.5.4",
"@types/memory-cache": "0.2.3",
"@types/node": "18.17.12",
"express": "4.18.2",
"husky": "8.0.3",
"jest": "29.6.4",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-morph": "19.0.0",
"typescript": "5.2.2",
"zone.js": "0.13.1"
},
"dependencies": {
"@angular-devkit/schematics": "16.1.0",
"@nguniversal/common": "^14.0.0 || ^15.0.0 || ^16.0.0",
"@nguniversal/express-engine": "^14.0.0 || ^15.0.0 || ^16.0.0",
"@schematics/angular": "16.1.0",
"domino": "2.1.6",
"memory-cache": "0.2.0"
},
"schematics": "./schematics/collection.json",
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
}
}