forked from nestjs/ng-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 KB
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
{
"name": "@nestjs/ng-universal",
"version": "2.0.1",
"description": "Nest - modern, fast, powerful node.js web framework (@ng-universal)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"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/platform-server": "^8.0.0",
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nguniversal/common": "^8.0.0",
"@nguniversal/express-engine": "^8.0.0",
"express": "^4.16.4",
"zone.js": "^0.8.29 || ^0.9.0 || ^0.10.0"
},
"devDependencies": {
"@angular/platform-server": "8.2.8",
"@nestjs/common": "6.7.2",
"@nestjs/core": "6.7.2",
"@nguniversal/common": "8.1.1",
"@nguniversal/express-engine": "8.1.1",
"@types/memory-cache": "0.2.0",
"@types/node": "11.13.21",
"express": "4.17.1",
"husky": "3.0.5",
"lint-staged": "9.4.0",
"prettier": "1.18.2",
"ts-morph": "4.0.1",
"typescript": "3.6.2",
"zone.js": "0.10.2"
},
"dependencies": {
"@angular-devkit/schematics": "8.3.6",
"@schematics/angular": "8.3.6",
"concurrently": "4.1.2",
"cross-spawn": "7.0.0",
"livereload": "0.8.1",
"memory-cache": "0.2.0",
"webpack-node-externals": "1.7.2"
},
"schematics": "./schematics/collection.json",
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}