-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.08 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.08 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "main",
"description": "Customizable design system with react, typescript, tailwindcss and ariakit.",
"scripts": {
"build": "yarn workspace welcome-ui run build",
"build:website": "yarn workspace website install && yarn workspace website build",
"check:audit": "bash -c './scripts/audit.sh --severity low --no-deprecations --recursive'",
"check:audit:fix": "npm_config_yes=true npx yarn-audit-fix",
"check:docs": "node ./scripts/check-docs.mjs",
"check:theme": "node --import=tsx lib/src/theme/scripts/generate-theme.ts",
"lint:css": "stylelint **/*.scss --config ./stylelint.config.mjs",
"lint:js": "eslint scripts lib website --max-warnings 0",
"lint:mdx": "prettier --parser mdx --write '**/docs/index.mdx'",
"lint:ts": "tsc -b lib/tsconfig.json website/tsconfig.json --noEmit",
"lint": "yarn lint:js && yarn lint:css && yarn lint:ts && yarn lint:mdx",
"tokens:clean": "yarn workspace welcome-ui run tokens:clean",
"tokens:build": "yarn workspace welcome-ui run tokens:build",
"theme:generate": "yarn workspace welcome-ui run theme:generate",
"migrate:inline": "node ./scripts/migrate-v9/inline/index.mjs",
"migrate:external": "node ./scripts/migrate-v9/external/index.mjs",
"migrate:v9": "node ./scripts/migrate-v9/index.mjs",
"migrate:v9:icons": "node ./scripts/migrate-v9/migrate-icons.mjs",
"migrate:v10": "node ./scripts/migrate-v10/index.mjs",
"postinstall": "husky install",
"release:dev": "node .dev-releases/version.mjs",
"release:alpha": "yarn workspace welcome-ui run release-it --preRelease=alpha",
"release": "yarn workspace welcome-ui run release-it",
"start": "yarn workspace website dev -p 3020",
"test": "yarn workspace welcome-ui test",
"test:scripts": "CI=1 vitest scripts/",
"test:scripts:complex": "CI=1 vitest migrate-external-files-complex",
"test:scripts:update": "vitest scripts/ -u"
},
"private": true,
"workspaces": [
"website",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WTTJ/welcome-ui.git"
},
"keywords": [
"react",
"typescript",
"tailwindcss",
"scss",
"css",
"ariakit",
"design-system",
"ui-library",
"ui",
"ux",
"jungle",
"welcome",
"WTTJ"
],
"author": "WTTJ <tech@wttj.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WTTJ/welcome-ui/issues"
},
"devDependencies": {
"@babel/generator": "^7.28.6",
"@babel/parser": "^7.28.6",
"@babel/traverse": "^7.28.6",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/css-modules": "^1.0.5",
"@types/node": "22.14.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/utils": "^8.55.0",
"autoprefixer": "^10.4.22",
"colors": "^1.4.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"esm": "^3.2.25",
"generic-names": "^4.0.0",
"glob": "13.0.6",
"globals": "^17.4.0",
"husky": "8.0.3",
"lodash.difference": "^4.5.0",
"minimist": "1.2.8",
"postcss": "^8.5.3",
"postcss-scss": "^4.0.9",
"postcss-styled-syntax": "^0.7.1",
"prettier": "3.5.3",
"react": "^18.3.1",
"react-docgen-typescript": "^2.4.0",
"react-dom": "^18.3.1",
"react-router-dom": "7.12.0",
"sass-embedded": "^1.90.0",
"stylelint": "^16.25.0",
"stylelint-config-standard-scss": "^16.0.0",
"svgo": "3.3.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.54.0",
"typescript-plugin-css-modules": "^5.2.0",
"yargs": "^17.7.2"
},
"resolutions": {
"brace-expansion": "5.0.5",
"immutable": "5.1.5",
"tar": "7.5.11",
"flatted": "3.4.2",
"yaml": "1.10.3",
"handlebars": "4.7.9",
"picomatch": "4.0.4"
},
"dependencies": {
"tailwindcss": "^4.1.18"
},
"packageManager": "yarn@4.12.0"
}