forked from nestjs/ng-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
{
"name": "@nestjs/ng-universal",
"version": "5.0.1",
"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": "^12.0.0",
"@angular/platform-server": "^12.0.0",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@nguniversal/common": "^12.0.0",
"@nguniversal/express-engine": "^12.0.0",
"express": "^4.17.1",
"zone.js": "^0.11.0"
},
"devDependencies": {
"@angular/common": "12.2.7",
"@angular/platform-server": "12.2.7",
"@commitlint/cli": "13.2.0",
"@commitlint/config-angular": "13.2.0",
"@nestjs/common": "8.0.8",
"@nestjs/core": "8.0.8",
"@types/jest": "27.0.2",
"@types/memory-cache": "0.2.1",
"@types/node": "14.17.20",
"express": "4.17.1",
"husky": "7.0.2",
"jest": "27.2.4",
"lint-staged": "11.1.2",
"prettier": "2.4.1",
"ts-jest": "27.0.5",
"ts-morph": "12.0.0",
"typescript": "4.4.3",
"zone.js": "0.11.4"
},
"dependencies": {
"@angular-devkit/schematics": "12.2.7",
"@schematics/angular": "12.2.7",
"@nguniversal/common": "12.1.0",
"@nguniversal/express-engine": "12.1.0",
"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"
}
}
}