-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.44 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
{
"name": "@koobiq/icons-workspace",
"version": "0.0.0",
"description": "",
"private": true,
"license": "MIT",
"packageManager": "yarn@4.1.1",
"workspaces": [
"packages/*"
],
"keywords": [
"design-system",
"koobiq",
"fonts",
"icons",
"symbols"
],
"scripts": {
"prepare": "husky",
"clean": "yarn cache clean && nx reset && rimraf temp dist",
"check-mapping": "node packages/icons/scripts/check-mapping.mjs",
"-----GITHUB_RELEASE-----": "---------------------------------------------------------------------------------",
"release": "nx release --skip-publish",
"release:preview": "nx release --skip-publish --dry-run",
"------FIGMA SCRIPTS------": "--------------------------------------------------------------------------------",
"figma:export-icons": "nx run @koobiq/icons:figma:export-icons",
"figma:sync": "yarn run clean && nx run @koobiq/icons:figma:sync",
"------BUILD SCRIPTS------": "--------------------------------------------------------------------------------",
"build:icons": "nx run @koobiq/icons:build",
"build": "nx run-many -t build",
"-----CI-----": "---------------------------------------------------------------------------------------------",
"prettier": "prettier --check . --ignore-unknown",
"prettier:fix": "yarn run prettier --write",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint -- --fix",
"convert": "npx tsx packages/visuals/scripts/convert.ts",
"gen-preview": "npx tsx packages/visuals/scripts/generate-preview.ts"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/core": "^19.0.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@figma-export/cli": "^6.4.1",
"@figma-export/output-components-as-svg": "^6.4.1",
"@figma-export/output-components-as-svgr": "^6.4.1",
"@figma-export/transform-svg-with-svgo": "^6.4.1",
"@nx/angular": "^20.8.4",
"@nx/eslint": "^20.8.4",
"@nx/react": "^20.8.4",
"@nx/vite": "^20.8.4",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@types/eslint": "^8.56.12",
"@types/node": "^24.10.4",
"@types/react": "^19.2.17",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitejs/plugin-react": "^5.0.0",
"cross-env": "^7.0.3",
"cwebp-bin": "^8.0.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"fantasticon": "^3.0.0",
"handlebars": "^4.7.8",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"lint-staged": "^15.5.2",
"ng-packagr": "^19",
"nx": "^20.8.4",
"prettier": "^3.9.6",
"rimraf": "^5.0.10",
"svg-sprite": "^2.0.4",
"svgo": "^3.3.4",
"tsx": "^4.23.1",
"typescript": "~5.5.4",
"vite": "^7.3.6",
"vite-tsconfig-paths": "^5.1.4"
}
}