-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.74 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
118
119
120
121
122
{
"name": "angular-spotify",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main && husky install",
"nx": "nx",
"start": "ng serve",
"build": "ng build",
"build:prod": "cross-env NODE_ENV=production ng build --configuration production",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint --base=main",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write --base=main",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"lint-staged": "lint-staged",
"generate-icons": "svg-generator"
},
"private": true,
"dependencies": {
"@angular/animations": "12.1.1",
"@angular/common": "12.1.1",
"@angular/compiler": "12.1.1",
"@angular/core": "12.1.1",
"@angular/forms": "12.1.1",
"@angular/platform-browser": "12.1.1",
"@angular/platform-browser-dynamic": "12.1.1",
"@angular/router": "12.1.1",
"@angular/service-worker": "12.1.1",
"@ngneat/svg-icon": "3.2.0",
"@ngneat/until-destroy": "^8.0.4",
"@ngrx/component": "12.2.0",
"@ngrx/component-store": "12.2.0",
"@ngrx/effects": "12.2.0",
"@ngrx/store": "12.2.0",
"@ngrx/store-devtools": "12.2.0",
"@nrwl/angular": "12.5.2",
"@sentry/angular": "6.8.0",
"@sentry/tracing": "6.8.0",
"lodash-es": "4.17.21",
"ng-zorro-antd": "11.4.2",
"rxjs": "6.6.6",
"sketch-js": "1.1.3",
"tslib": "2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.1.1",
"@angular-eslint/eslint-plugin": "12.2.0",
"@angular-eslint/eslint-plugin-template": "12.2.0",
"@angular-eslint/template-parser": "12.2.0",
"@angular/cli": "12.1.1",
"@angular/compiler-cli": "12.1.1",
"@angular/language-service": "12.1.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@ngneat/svg-generator": "3.0.1",
"@nrwl/cli": "12.5.2",
"@nrwl/cypress": "12.5.2",
"@nrwl/eslint-plugin-nx": "12.5.2",
"@nrwl/jest": "12.5.2",
"@nrwl/linter": "12.5.2",
"@nrwl/nx-cloud": "12.2.7",
"@nrwl/tao": "12.5.2",
"@nrwl/workspace": "12.5.2",
"@types/jest": "26.0.23",
"@types/lodash-es": "4.17.4",
"@types/node": "14.14.33",
"@types/spotify-api": "0.0.10",
"@types/spotify-web-playback-sdk": "0.1.9",
"@typescript-eslint/eslint-plugin": "4.28.1",
"@typescript-eslint/parser": "4.28.1",
"autoprefixer": "10.2.6",
"cross-env": "7.0.3",
"cypress": "7.6.0",
"dotenv": "10.0.0",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "2.11.3",
"husky": "7.0.0",
"jest": "27.0.6",
"jest-preset-angular": "9.0.4",
"lint-staged": "11.0.0",
"postcss": "8.4.31",
"prettier": "2.3.2",
"tailwindcss": "2.2.4",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"typescript": "4.3.5"
},
"svgGenerator": {
"outputPath": "./libs/web/shared/ui/icon/src/lib/svg",
"prefix": "as",
"srcPath": "./libs/web/shared/ui/icon/src/lib/assets",
"svgoConfig": {
"plugins": [
{
"removeDimensions": true,
"cleanupAttrs": true
}
]
}
},
"volta": {
"node": "16.17.1",
"yarn": "1.22.19"
}
}