-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "ngext",
"version": "0.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ben Winding <[email protected]>",
"license": "MIT",
"bin": {
"ngext": "./dist/ngext.js"
},
"repository": "https://github.com/benwinding/ngext",
"homepage": "https://github.com/benwinding/ngext",
"files": [
"src",
"dist",
"templates",
"LICENSE"
],
"dependencies": {
"@angular-devkit/build-angular": "0.1000.x",
"@angular/animations": "^10",
"@angular/cli": "^10",
"@angular/common": "10",
"@angular/compiler": "10",
"@angular/compiler-cli": "10",
"@angular/core": "^10",
"@angular/platform-browser": "10",
"@angular/platform-browser-dynamic": "^10",
"@angular/platform-server": "10",
"@angular/router": "10",
"@babel/polyfill": "^7.10.4",
"@ngtools/webpack": "^10",
"@nguniversal/builders": "10",
"@nguniversal/express-engine": "10",
"circular-json": "^0.5.9",
"commander": "^5.1.0",
"copy-template-dir": "^1.4.0",
"deep-object-diff": "^1.1.0",
"express": "^4.15.2",
"fs-extra": "^9.0.1",
"glob-watcher": "^5.0.5",
"globby": "^11.0.1",
"shelljs": "^0.8.4",
"simple-git": "^2.24.0",
"ts-morph": "^9.1.0",
"ts-node": "^9.0.0",
"typescript": "4.0.x",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/fs-extra": "^9.0.4",
"@types/glob-watcher": "^5.0.0",
"@types/globby": "^9.1.0",
"@types/jest": "^26.0.15",
"@types/typescript": "^2.0.0",
"docsify-cli": "^4.4.2",
"jest": "^26.6.3",
"ts-jest": "^26.4.4"
},
"scripts": {
"build": "tsc --project ./src/tsconfig.json",
"watch": "tsc --project ./src/tsconfig.json --watch",
"test": "jest",
"docs": "yarn docsify serve docs"
}
}