-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "ng-conduit",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"openapi": "ng-openapi-gen"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.4",
"@angular/common": "^15.2.4",
"@angular/compiler": "^15.2.4",
"@angular/core": "^15.2.4",
"@angular/forms": "^15.2.4",
"@angular/platform-browser": "^15.2.4",
"@angular/platform-browser-dynamic": "^15.2.4",
"@angular/router": "^15.2.4",
"@ngrx/component-store": "~15.4.0",
"marked": "~4.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.4",
"@angular/cli": "~15.2.4",
"@angular/compiler-cli": "^15.2.4",
"@cypress/schematic": "2.5.0",
"@testing-library/angular": "~13.4.0",
"@testing-library/cypress": "^9.0.0",
"@testing-library/dom": "~9.2.0",
"@testing-library/jasmine-dom": "~1.3.3",
"@testing-library/user-event": "~14.4.3",
"@types/jasmine": "~4.3.1",
"@types/marked": "~4.0.8",
"@types/testing-library__jasmine-dom": "~1.3.0",
"cypress": "~12.8.1",
"jasmine-core": "~4.6.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-openapi-gen": "^0.24.1",
"prettier": "2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "~4.8.3"
},
"prettier": {
"semi": true,
"singleQuote": true,
"htmlWhitespaceSensitivity": "ignore",
"tabWidth": 4,
"printWidth": 120,
"plugins": [
"prettier-plugin-organize-imports"
]
}
}