forked from Brisanet/ion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.42 KB
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
{
"name": "ion",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --project=ion",
"test": "jest -i --passWithNoTests",
"test:coverage": "jest -i --coverage",
"test:watch": "jest -i --watchAll",
"lint": "eslint .",
"e2e": "ng e2e",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "npm run docs:json && build-storybook",
"prettier": "prettier --write .",
"prepare": "husky install",
"lint-staged": "lint-staged",
"commit": "git-cz",
"chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN --exit-once-uploaded"
},
"private": true,
"dependencies": {
"@angular/animations": "~8.1.0",
"@angular/cdk": "8.1.0",
"@angular/common": "~8.1.0",
"@angular/compiler": "~8.1.0",
"@angular/core": "~8.1.0",
"@angular/forms": "~8.1.0",
"@angular/platform-browser": "~8.1.0",
"@angular/platform-browser-dynamic": "~8.1.0",
"@angular/router": "~8.1.0",
"rxjs": "~6.4.0",
"sass": "^1.53.0",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-builders/jest": "^12.1.2",
"@angular-devkit/build-angular": "~0.801.3",
"@angular-devkit/build-ng-packagr": "~0.801.3",
"@angular/cli": "~8.1.0",
"@angular/compiler-cli": "~8.1.0",
"@angular/language-service": "~8.1.0",
"@babel/core": "^7.18.6",
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/cz-commitlint": "15.0.0",
"@compodoc/compodoc": "^1.1.19",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/angular": "^6.5.9",
"@storybook/builder-webpack4": "^6.5.9",
"@storybook/manager-webpack4": "^6.5.9",
"@storybook/testing-library": "0.0.13",
"@testing-library/angular": "^10.11.0",
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^27.0.1",
"@types/node": "~8.9.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-jest": "^27.1.0",
"babel-loader": "^8.2.5",
"chromatic": "^6.7.3",
"codelyzer": "^5.0.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-css": "^0.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "7.0.4",
"jest": "^27.1.0",
"jest-diff": "25.5.0",
"jest-preset-angular": "^9.0.7",
"lint-staged": "12.5.0",
"ng-packagr": "^5.1.0",
"prettier": "^2.7.1",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tsickle": "^0.35.0",
"tslint": "~5.15.0",
"typescript": "~3.4.3"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/projects/ion/tsconfig.spec.json",
"stringifyContentPathRegex": "\\.html$"
}
},
"modulePaths": [
"<rootDir>"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"html",
"lcov"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}