-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.06 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "todo-ngrx-cypress-storybook",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"postinstall": "ngcc && husky install",
"test": "ng test",
"lint": "ng lint --fix",
"lint:style": "stylelint '**/*.scss' --fix",
"husky": "yarn lint-staged --relative",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"prestorybook": "yarn docs:json",
"storybook": "start-storybook -s src -p 6006",
"build-storybook": "yarn docs:json && build-storybook",
"cypress": "cypress open",
"cypress:run": "cypress run"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.10",
"@angular/common": "^12.2.10",
"@angular/compiler": "^12.2.10",
"@angular/core": "^12.2.10",
"@angular/forms": "^12.2.10",
"@angular/platform-browser": "^12.2.10",
"@angular/platform-browser-dynamic": "^12.2.10",
"@angular/router": "^12.2.10",
"@ngrx/effects": "^12.5.0",
"@ngrx/entity": "^12.5.0",
"@ngrx/router-store": "^12.5.0",
"@ngrx/schematics": "^12.5.0",
"@ngrx/store": "^12.5.0",
"core-js": "^3.18.3",
"rxjs": "^7.4.0",
"todomvc-app-css": "^2.4.1",
"todomvc-common": "^1.0.5",
"tslib": "^2.3.1",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.10",
"@angular-eslint/builder": "^12.6.1",
"@angular-eslint/eslint-plugin": "^12.6.1",
"@angular-eslint/eslint-plugin-template": "^12.6.1",
"@angular-eslint/template-parser": "^12.6.1",
"@angular/cli": "^12.2.10",
"@angular/compiler-cli": "^12.2.10",
"@angular/elements": "^12.2.11",
"@angular/language-service": "^12.2.10",
"@babel/core": "^7.15.8",
"@compodoc/compodoc": "^1.1.15",
"@cypress/code-coverage": "^3.9.11",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@ngrx/store-devtools": "^12.5.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/angular": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@storybook/preset-scss": "^1.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@webcomponents/custom-elements": "^1.5.0",
"babel-loader": "^8.2.3",
"brick.json": "^0.0.6",
"css-loader": "^6.4.0",
"cypress": "^8.7.0",
"cypress-image-snapshot": "^4.0.1",
"cypress-wait-until": "^1.7.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"istanbul-lib-coverage": "^3.2.0",
"lint-staged": "^11.2.6",
"lz-string": "^1.4.4",
"msw": "^0.35.0",
"msw-storybook-addon": "^1.4.1",
"ngrx-store-logger": "^0.2.4",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"source-map-support": "^0.5.20",
"storybook-ngrx-helper": "^0.2.0",
"style-loader": "^3.3.1",
"stylelint": "^14.0.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^2.0.1",
"stylelint-prettier": "^1.2.0",
"ts-node": "^10.3.0",
"typescript": "~4.2.3"
},
"lint-staged": {
"*.{js,ts,html}": [
"eslint --fix"
],
"*.scss": [
"stylelint --fix"
]
},
"msw": {
"workerDirectory": "src"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
}
}