forked from trungvose/angular-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.9 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
123
124
125
{
"name": "angular-spotify",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Trung Vo",
"email": "[email protected]",
"url": "https://github.com/trungk18"
},
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main && husky install",
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"build:prod": "cross-env NODE_ENV=production nx build --prod",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"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": "15.2.8",
"@angular/common": "15.2.8",
"@angular/compiler": "15.2.8",
"@angular/core": "15.2.8",
"@angular/forms": "15.2.8",
"@angular/platform-browser": "15.2.8",
"@angular/platform-browser-dynamic": "15.2.8",
"@angular/router": "15.2.8",
"@angular/service-worker": "15.2.8",
"@ngneat/svg-icon": "3.2.0",
"@ngneat/until-destroy": "^8.0.4",
"@ngrx/component": "15.3.0",
"@ngrx/component-store": "15.3.0",
"@ngrx/effects": "15.3.0",
"@ngrx/store": "15.3.0",
"@ngrx/store-devtools": "15.3.0",
"@nrwl/angular": "15.9.2",
"@sentry/angular": "7.49.0",
"@sentry/tracing": "6.8.0",
"lodash-es": "4.17.21",
"ng-zorro-antd": "15.1.0",
"rxjs": "6.6.6",
"sketch-js": "1.1.3",
"tslib": "2.3.0",
"zone.js": "0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.2.6",
"@angular-devkit/core": "~15.0.0",
"@angular-devkit/schematics": "~15.0.0",
"@angular-eslint/eslint-plugin": "15.0.0",
"@angular-eslint/eslint-plugin-template": "15.0.0",
"@angular-eslint/template-parser": "15.0.0",
"@angular/cli": "~15.2.0",
"@angular/compiler-cli": "15.2.8",
"@angular/language-service": "15.2.8",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@ngneat/svg-generator": "3.0.1",
"@nrwl/cli": "15.9.2",
"@nrwl/cypress": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/jest": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/nx-cloud": "16.0.1",
"@nrwl/workspace": "15.9.2",
"@schematics/angular": "~15.0.0",
"@types/jest": "29.4.4",
"@types/lodash-es": "4.17.4",
"@types/node": "16.11.7",
"@types/spotify-api": "0.0.10",
"@types/spotify-web-playback-sdk": "0.1.9",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"autoprefixer": "10.2.6",
"cross-env": "7.0.3",
"cypress": "7.6.0",
"dotenv": "10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "2.11.3",
"husky": "7.0.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.0.0",
"lint-staged": "11.0.0",
"nx": "15.9.2",
"postcss": "8.3.5",
"prettier": "2.8.7",
"tailwindcss": "3.3.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.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",
"cleanupAttrs"
]
}
}
}