-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.53 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.53 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
{
"name": "sports-ui",
"version": "0.0.0",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"ng": "nx",
"start": "nx serve --port=4401",
"build": "nx run build --configuration=production --skip-nx-cache ",
"build:patch": "npm run bump:patch && npm run build",
"build:minor": "npm run bump:minor && npm run build",
"build:major": "npm run bump:major && npm run build",
"bump:patch": "npm version patch",
"bump:minor": "npm version minor",
"bump:major": "npm version major",
"test": "nx test --configuration=develop --code-coverage --watch=true",
"test:ci": "npm run lint && npm run test",
"lint": "nx lint",
"lint:fix": "nx lint --fix",
"install:sdk": "npm i ./libs/sports-ui-sdk",
"install:sdk:new": "npm i ./libs/ui-sdk",
"circular-dependency": "skott src/main.ts",
"fresh:install": "rm -rf .angular && rm -rf node_modules && npm cache clean --force && npm cache verify && npm i"
},
"private": true,
"dependencies": {
"@angular/animations": "17.2.4",
"@angular/cdk": "17.2.2",
"@angular/common": "17.2.4",
"@angular/compiler": "17.2.4",
"@angular/core": "17.2.4",
"@angular/forms": "17.2.4",
"@angular/material": "17.2.2",
"@angular/platform-browser": "17.2.4",
"@angular/platform-browser-dynamic": "17.2.4",
"@angular/router": "17.2.4",
"@angular/service-worker": "17.2.4",
"@ngxs/router-plugin": "^3.8.0",
"@ngxs/store": "^3.8.0",
"@nrwl/angular": "18.1.2",
"@sports-ui/daily-fantasy-sdk": "file:libs/daily-fantasy-sdk",
"@sports-ui/ui-sdk": "file:libs/ui-sdk",
"@supabase/supabase-js": "^2.2.0",
"chart.js": "^3.8.0",
"clone": "^2.1.2",
"date-fns": "^2.29.3",
"flowbite": "^1.6.3",
"lodash": "^4.17.21",
"material-design-icons-iconfont": "^6.1.0",
"ng2-charts": "^3.1.2",
"ngx-build-plus": "^15.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.5.0",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.2.3",
"@angular-devkit/core": "17.2.3",
"@angular-devkit/schematics": "17.2.3",
"@angular-devkit/schematics-cli": "^15.2.7",
"@angular-eslint/builder": "1.2.0",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "~17.2.0",
"@angular/compiler-cli": "17.2.4",
"@angular/language-service": "17.2.4",
"@ngxs/devtools-plugin": "^3.8.1",
"@nrwl/workspace": "18.1.2",
"@nx/js": "18.1.2",
"@types/clone": "^2.1.1",
"@types/jasmine": "~3.6.0",
"@types/lodash": "^4.14.173",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"autoprefixer": "^10.4.13",
"codelyzer": "^6.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"nx": "18.1.2",
"postcss-scss": "^4.0.6",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "^0.2.2",
"skott": "^0.22.0",
"supabase": "^1.153.4",
"tailwindcss": "^3.2.6",
"ts-node": "~8.3.0",
"typescript": "5.2",
"webpack-bundle-analyzer": "^4.7.0"
}
}