-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.41 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
{
"name": "@elephas/angular-root",
"private": true,
"version": "0.0.0",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"ng": "ng",
"start:core": "ng serve --project=core",
"build:core": "ng build --project=core",
"build:core:prod": "ng build --prod --project=core",
"start:layout": "ng serve --project=layout",
"build:layout": "ng build --project=layout",
"build:layout:prod": "ng build --prod --project=layout",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"docs:json": "compodoc -p ./tsconfig.json -e json -d . --disablePrivate --disableLifeCycleHooks --disableInternal",
"storybook": "npm run docs:json && npm run storybook:docs",
"storybook:docs": "start-storybook --docs -p 9008",
"build-storybook": "npm run docs:json && npm run build-storybook:build",
"build-storybook:build": "build-storybook -c .storybook -o build --docs",
"lerna:version": "lerna version --exact --force-publish --conventional-commits --create-release github --yes",
"lerna:publish": "lerna publish from-package --contents dist --yes",
"release": "npm install && npm run lerna:version && npm run lerna:publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@elephas/core": "^1.7.0",
"@elephas/layout": "^1.7.0",
"ngx-perfect-scrollbar": "^10.0.1",
"tslib": "^2.0.1"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1000.6",
"@angular-devkit/build-angular": "^0.1000.6",
"@angular-devkit/build-ng-packagr": "^0.1000.6",
"@angular-devkit/build-optimizer": "^0.1000.6",
"@angular-devkit/build-webpack": "^0.1000.6",
"@angular-devkit/core": "^10.0.6",
"@angular-devkit/schematics": "^10.0.6",
"@angular/animations": "^10.0.9",
"@angular/cdk": "^10.1.3",
"@angular/cli": "^10.0.6",
"@angular/common": "^10.0.9",
"@angular/compiler": "^10.0.9",
"@angular/compiler-cli": "^10.0.9",
"@angular/core": "^10.0.9",
"@angular/forms": "^10.0.9",
"@angular/language-service": "^10.0.9",
"@angular/platform-browser": "^10.0.9",
"@angular/platform-browser-dynamic": "^10.0.9",
"@angular/router": "^10.0.9",
"@babel/core": "^7.11.1",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@compodoc/compodoc": "^1.1.11",
"@ngtools/webpack": "^10.0.6",
"@schematics/angular": "^10.0.6",
"@schematics/update": "^0.1000.6",
"@storybook/addon-docs": "^6.0.6",
"@storybook/angular": "^6.0.6",
"@types/jasmine": "^3.5.12",
"@types/jasminewd2": "^2.0.8",
"@types/mime": "^2.0.3",
"@types/node": "^14.0.27",
"babel-loader": "^8.1.0",
"codelyzer": "^6.0.0",
"downlevel-dts": "^0.7.0",
"husky": "^4.2.5",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^5.0.2",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"lerna": "^3.22.1",
"mime": "^2.4.6",
"moment": "^2.29.1",
"ng-packagr": "^10.0.4",
"protractor": "^7.0.0",
"react": "^16.13.1",
"react-is": "^16.13.1",
"rxjs": "^6.6.2",
"svgxuse": "^1.2.6",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"zone.js": "^0.10.3"
},
"overrides": {
"colors": "1.4.0"
}
}