-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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": "rxjs-visualize",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build-lib": "ng build rxjs-visualize-marble && cp projects/rxjs-visualize-marble/style.css dist/rxjs-visualize-marble",
"lint": "tsc && tslint --project tsconfig.json"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write --parser typescript --single-quote --trailing-comma all",
"tslint --fix --config tslint.fix.json",
"git add"
],
"projects/**/*.ts": [
"prettier --write --parser typescript --single-quote --trailing-comma all",
"tslint --fix --config projects/rxjs-visualize-marble/tslint.fix.json",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.14",
"@angular/common": "^7.2.14",
"@angular/compiler": "^7.2.14",
"@angular/core": "^7.2.14",
"@angular/platform-browser": "^7.2.14",
"@angular/platform-browser-dynamic": "^7.2.14",
"@angular/router": "^7.2.14",
"core-js": "^2.6.5",
"ngx-prism-highlight": "^1.0.1",
"prismjs": "^1.16.0",
"rxjs": "^6.5.1",
"zone.js": "^0.9.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^7.1.1",
"@angular-builders/dev-server": "^7.1.1",
"@angular-devkit/build-angular": "^0.11.3",
"@angular-devkit/build-ng-packagr": "~0.11.0",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^8.0.0-rc.0",
"@angularclass/hmr": "^2.1.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^11.13.7",
"babel-loader": "^8.0.4",
"babel-plugin-preval": "^3.0.1",
"codelyzer": "^5.0.1",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"ng-packagr": "^5.1.0",
"prettier": "^1.17.0",
"ts-config-mobiquity-angular": "^9.0.0",
"tsickle": ">=0.29.0",
"tslib": "^1.9.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint"
}
}
}