-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 3.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "fusing-angular-cli",
"version": "0.0.0-development",
"description": "Angular application generator and runner",
"main": ".build/index.js",
"ts:main": "index.ts",
"typings": "index.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/patrickmichalina/fusing-angular-cli"
},
"author": {
"name": "Patrick Michalina",
"email": "patrickmichalina@mac.com",
"url": "https://github.com/patrickmichalina/fusing-angular-cli"
},
"bin": {
"fng": ".build/fng"
},
"files": [
".build"
],
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json --config tslint.json",
"test": "ts-node fuse test",
"test.watch": "chokidar '(src|spec)/**/*.ts' -c 'ts-node fuse test' --initial --silent",
"build": "ts-node fuse bundle --build",
"prepublishOnly": "ts-node fuse bundle --build",
"precommit": "pretty-quick --staged --no-semi --single-quote",
"start": "ts-node fuse bundle",
"start.dev": "ts-node fuse bundle & npm run test.watch"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/dotenv": "^4.0.3",
"@types/favicons": "^5.1.0",
"@types/iltorb": "^2.0.1",
"@types/inquirer": "^0.0.42",
"@types/node-sass": "^3.10.32",
"@types/npm": "^2.0.29",
"@types/ua-parser-js": "^0.7.32",
"@types/yargs": "^11.1.1",
"chokidar-cli": "^1.2.0",
"condition-circle": "^2.0.1",
"fuse-test-runner": "^1.0.16",
"husky": "^0.14.3",
"last-release-git": "0.0.3",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"semantic-release": "^15.8.1",
"tslint-immutable": "^4.6.0",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "^6.4.1",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/compiler-cli": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "^6.4.1",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/platform-server": "^6.1.0",
"@angular/router": "^6.1.0",
"@angular/service-worker": "^6.1.0",
"@nguniversal/common": "^6.0.0",
"@nguniversal/express-engine": "^6.0.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.0",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.1",
"@types/js-cookie": "^2.1.0",
"@types/lru-cache": "^4.1.1",
"@types/node": "^10.5.4",
"@types/object-hash": "^1.2.0",
"ajv": "^6.5.2",
"angularfire2": "^5.0.0-rc.11",
"chalk": "^2.4.1",
"consolidate": "^0.15.1",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.7",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"favicons": "^5.1.1",
"firebase": "^5.3.0",
"firebase-admin": "^5.13.1",
"fs-extra": "^7.0.0",
"fuse-box": "^3.4.0",
"hammerjs": "^2.0.8",
"iltorb": "^2.3.2",
"inquirer": "^6.0.0",
"jest": "23.4.1",
"jest-junit-reporter": "^1.1.0",
"jest-preset-angular": "^5.2.3",
"jest-zone-patch": "0.0.8",
"js-cookie": "^2.2.0",
"lru-cache": "^4.1.3",
"ms": "^2.1.1",
"ng2-fused": "^0.5.1",
"node-sass": "^4.9.2",
"npm": "^6.2.0",
"object-hash": "^1.3.0",
"pug": "^2.0.3",
"reload": "^2.3.0",
"rxjs": "^6.2.2",
"simple-git": "^1.96.0",
"ts-jest": "22.4.6",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "2.9.2",
"ua-parser-js": "^0.7.18",
"uglify-js": "^3.4.6",
"yargs": "^12.0.1",
"zone.js": "^0.8.26"
},
"release": {
"branch": "master",
"verifyConditions": "condition-circle",
"getLastRelease": "last-release-git"
}
}