-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.31 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
118
119
120
121
122
123
124
125
126
127
{
"name": "pert",
"version": "0.0.0",
"scripts": {
"start": "ng serve",
"build": "ng build",
"test": "jest",
"test-e2e": "cypress open",
"test-e2e:local": "cypress open -c baseUrl=http://localhost:4200",
"lint": "eslint ./**/*.{js,ts}",
"generate-icons": "svg-to-ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write",
"prettier-eslint"
],
"src/**/*.{json,md}": [
"prettier --write"
],
"src/**/*.*css": [
"stylelint --fix",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^10.0.14",
"@angular/cdk": "~10.0.0",
"@angular/common": "~10.0.0",
"@angular/compiler": "~10.0.0",
"@angular/core": "~10.0.0",
"@angular/forms": "~10.0.0",
"@angular/material": "^10.0.2",
"@angular/platform-browser": "~10.0.0",
"@angular/platform-browser-dynamic": "~10.0.0",
"@angular/router": "~10.0.0",
"@ngneat/hot-toast": "^3.3.0",
"@ngneat/overview": "^2.0.2",
"@ngneat/reactive-forms": "1.7.2",
"@ngneat/svg-icon": "^2.0.0",
"@ngneat/until-destroy": "^8.0.4",
"@ngrx/effects": "^10.0.1",
"@ngrx/entity": "^10.0.1",
"@ngrx/store": "^10.0.1",
"@ngrx/store-devtools": "^10.0.1",
"@swimlane/ngx-charts": "^18.0.1",
"@swimlane/ngx-graph": "^7.2.0",
"@types/d3-dispatch": "^2.0.0",
"@types/d3-drag": "^2.0.0",
"@types/d3-shape": "^2.0.0",
"@types/d3-timer": "^2.0.0",
"@types/dagre": "^0.7.44",
"@types/file-saver": "^2.0.2",
"@types/lodash": "^4.14.165",
"@uiowa/digit-only": "^2.2.3",
"dagre": "^0.8.5",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"nanoid": "^3.1.16",
"rxjs": "~6.5.5",
"svg-to-ts": "^5.7.1",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1100.1",
"@angular/cli": "~10.0.0",
"@angular/compiler-cli": "~10.0.0",
"@ngneat/spectator": "5.13.0",
"@types/jest": "^26.0.24",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"codelyzer": "^6.0.0-next.1",
"cypress": "^8.0.0",
"cypress-real-events": "^1.5.1",
"eslint": "^7.31.0",
"eslint-plugin-cypress": "^2.11.3",
"husky": "^4.2.5",
"jest": "^27.0.6",
"jest-preset-angular": "^9.0.5",
"lint-staged": "^11.0.1",
"ng-mocks": "^12.4.0",
"prettier": "^1.19.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^20.0.0",
"ts-node": "~8.3.0",
"typescript": "~3.9.5"
},
"svg-to-ts": {
"generateType": "false",
"delimiter": "KEBAB",
"conversionType": "files",
"iconsFolderName": "svg",
"prefix": "app",
"srcFiles": [
"./src/assets/images/svg-src/*.svg"
],
"outputDirectory": "./src/assets/images/svg-compiled",
"svgoConfig": {
"plugins": [
{
"removeDimensions": true,
"cleanupAttrs": true
}
]
}
},
"jest": {
"preset": "jest-preset-angular",
"testMatch": [
"<rootDir>/src/**/*.spec.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
]
}
}