-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 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
{
"name": "rainbow-palette",
"version": "1.5.1",
"description": "This app generates your own custom color palette from just a single color. Preview your palette live or export it for usage with CSS or TailwindCSS.",
"homepage": "https://rainbow-palette.app/",
"bugs": {
"url": "https://github.com/pawcoding/rainbow-palette/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pawcoding/Rainbow-Palette.git"
},
"license": "MIT",
"author": {
"name": "pawcode Development"
},
"scripts": {
"postversion": "pnpm run build:ngsw && pnpm run build:sitemap",
"build": "ng build",
"build:ngsw": "node ./scripts/update-ngsw.js",
"build:sitemap": "node ./scripts/update-sitemap.js",
"preinstall": "npx only-allow pnpm",
"lint": "ng lint",
"ng": "ng",
"prettier": "prettier --write \"{src,scripts}/**/*.{js,ts,json,html,css}\"",
"prettier:check": "prettier --check \"{src,scripts}/**/*.{js,ts,json,html,css}\"",
"semantic-release": "semantic-release",
"start": "ng serve",
"storybook": "ng run rainbow-palette:storybook",
"storybook:build": "ng run rainbow-palette:build-storybook",
"chromatic": "chromatic --build-script-name storybook:build --exit-zero-on-changes",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/animations": "^18.2.2",
"@angular/cdk": "^18.2.2",
"@angular/common": "^18.2.2",
"@angular/compiler": "^18.2.2",
"@angular/core": "^18.2.2",
"@angular/forms": "^18.2.2",
"@angular/platform-browser": "^18.2.2",
"@angular/platform-browser-dynamic": "^18.2.2",
"@angular/router": "^18.2.2",
"@angular/service-worker": "^18.2.2",
"@ng-icons/core": "^29.5.0",
"@ng-icons/heroicons": "^29.5.0",
"@ng-icons/simple-icons": "^29.5.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"canvas-confetti": "^1.9.3",
"ngx-matomo-client": "~6.3.0",
"rxjs": "~7.8.1",
"string-to-unicode-variant": "^1.0.9",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.2",
"@angular-eslint/builder": "^18.3.0",
"@angular-eslint/eslint-plugin": "^18.3.0",
"@angular-eslint/eslint-plugin-template": "^18.3.0",
"@angular-eslint/schematics": "^18.3.0",
"@angular-eslint/template-parser": "^18.3.0",
"@angular/cli": "^18.2.2",
"@angular/compiler-cli": "^18.2.2",
"@chromatic-com/storybook": "^1.8.0",
"@compodoc/compodoc": "^1.1.25",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-docs": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/angular": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/test": "^8.2.9",
"@tailwindcss/forms": "~0.5.8",
"@types/canvas-confetti": "^1.6.4",
"@types/jasmine": "~5.1.4",
"@types/node": "^20.16.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"chromatic": "^11.7.1",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "~0.8.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"jasmine-core": "~5.2.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^2.5.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"semantic-release": "^24.1.0",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.10",
"typescript": "~5.5.4"
},
"publishConfig": {
"access": "restricted"
},
"readme": "https://github.com/pawcoding/rainbow-palette#readme"
}