-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
83 lines (83 loc) · 2.82 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
{
"name": "ng",
"version": "0.0.0",
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"ng": "nx",
"start": "npx ng serve ng-demo -o",
"lint": "nx lint",
"pretty": "prettier --write \"./src/**/*.{html,ts,less}\"",
"e2e": "nx e2e",
"test": "ng test",
"preinstall": "git config commit.template commit.template",
"build:docs": "node ./build/buildwc.js && node ./build/package.js && node ./build/build-api.js",
"clean": "rimraf dist",
"create:websitefiles": "node ./build/autoCreateWebsite.js",
"create:demoprojectjson": "node ./build/autoCreateDemoProjectJson.js",
"create:libprojectjson": "node ./build/autoCreateLibProjectJson.js",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"prepreview": "npm run clean && rimraf node_modules/@opentiny && npm run resetpreview",
"resetpreview": "node ./build/reset-preview.js",
"build:test": "node ./build/bindTest",
"commit": "cz"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/cdk": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/elements": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"libphonenumber-js": "^1.10.7",
"rxjs": "^6.5.3 || ^7.4.0",
"tslib": "^2.0.0",
"web-animations-js": "^2.3.2",
"zone.js": "^0.11.8",
"color":"4.2.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.0",
"@angular-eslint/eslint-plugin": "~13.1.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@angular/language-service": "~13.3.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@compodoc/compodoc": "^1.1.19",
"@nrwl/angular": "13.10.6",
"@nrwl/workspace": "13.10.6",
"@types/jasmine": "~4.0.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"chalk": "4.1.2",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"ejs": "^3.1.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fancy-log": "^2.0.0",
"fs-extra": "^10.1.0",
"ionicons": "^6.0.4",
"jasmine-core": "~4.0.0",
"json5": "^2.2.1",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lint-staged": "^13.0.3",
"ng-packagr": "~13.3.0",
"nx": "13.10.6",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"typescript": "~4.6.2"
}
}