This repository was archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "@angularclass/universal-express",
"version": "1.0.4",
"description": "universal-express: Angular Universal module for express",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "node_modules/.bin/tsc || true",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angularclass/angular-universal-express.git"
},
"author": "PatrickJS <patrick@angularclass.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/angularclass/angular-universal-express/issues"
},
"homepage": "https://github.com/angularclass/angular-universal-express#readme",
"devDependencies": {
"@angular/common": "^4.2.6",
"@angular/compiler": "^4.2.6",
"@angular/animations": "^4.2.6",
"@angular/core": "^4.2.6",
"@angular/http": "^4.2.6",
"@angular/platform-browser": "^4.2.6",
"@angular/platform-browser-dynamic": "^4.2.6",
"@angular/platform-server": "^4.2.6",
"@angular/router": "^4.2.6",
"@types/express": "^4.0.35",
"@types/node": "^7.0.8",
"rxjs": "^5.2.0",
"typescript": "^2.2.1",
"xhr2": "^0.1.4",
"zone.js": "^0.8.4"
},
"dependencies": {
}
}