-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
150 lines (150 loc) · 5.73 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "main",
"description": "Customizable design system with react • styled-components • styled-system and ariakit.",
"scripts": {
"build:core": "./scripts/core.sh",
"build:docs": "yarn lerna run doc --concurrency 2",
"build:packages": "yarn lerna run build --ignore @welcome-ui/core",
"build:types": "yarn lerna run types",
"build": "yarn webfont:build && yarn build:core && yarn build:packages && yarn build:types && yarn build:docs",
"check:audit": "/bin/bash -c 'yarn audit --level critical; [[ $? -ge 16 ]] && exit 1 || exit 0'",
"check:deps": "yarn lerna exec --no-bail --stream depcheck",
"clean": "yarn lerna clean",
"website:build": "cd website && yarn && yarn build",
"website:deploy": "yarn && yarn icons:build && yarn build && yarn website:build",
"website:dev": "cd website && yarn dev -p 3020",
"website:examples": "node -r esm website/build-app/utils/examples-page-exporter.ts",
"first:install": "yarn && yarn build && yarn icons:build",
"homerun": "yarn clean --yes && rm -rf node_modules/ website/.next/ && yarn cache clean && yarn && yarn build && yarn start",
"icons:build": "yarn lerna run build --scope @welcome-ui/icons",
"icons:collect": "node -r esm scripts/icons-collect.js",
"icons:optimize": "node -r esm scripts/icons-optimize.js",
"icons:types": "yarn lerna run types --scope @welcome-ui/icons",
"icons": "yarn icons:optimize && yarn icons:collect && yarn icons:build && yarn icons:types && yarn webfont && yarn build && yarn",
"lint:css": "stylelint 'packages/**/styles.ts'",
"lint:js": "eslint packages scripts --max-warnings 0",
"lint:mdx": "prettier --parser mdx --write '**/docs/index.mdx'",
"lint:ts": "tsc --noEmit && cd website && tsc --noEmit",
"lint:website": "cd website && yarn lint",
"lint": "yarn lint:js && yarn lint:css && yarn lint:ts && yarn lint:mdx && yarn lint:website",
"migrate": "node ./scripts/upgrade-v6.js",
"migrate:v5": "node ./scripts/upgrade-v5.js",
"postinstall": "husky install",
"pre-build": "yarn icons:collect",
"release": "yarn lerna version --conventional-commits --no-private",
"dev:prerelease": "yarn lerna version --no-private --preid alpha",
"start": "yarn website:dev",
"test": "yarn jest",
"watch": "onchange 'packages/**/*.ts*' -e '**/dist/**' -- node -r esm scripts/watch.js {{changed}}",
"webfont:build": "node -r esm scripts/webfont-build.js --force && yarn build:packages --scope @welcome-ui/icons.font",
"webfont:deploy": "./scripts/webfont-deploy.sh",
"webfont": "yarn webfont:build && yarn webfont:deploy"
},
"private": true,
"workspaces": [
"packages/**/*",
"../packages/**/*",
"icons",
"icons/**/*",
"../icons/**/*",
"website"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WTTJ/welcome-ui.git"
},
"keywords": [
"design-system",
"react",
"ariakit",
"styled-components",
"styled-system",
"ui-library",
"ui",
"ux",
"jungle",
"welcome",
"WTTJ"
],
"author": "WTTJ <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WTTJ/welcome-ui/issues"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-modules-commonjs": "7.25.9",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "^7.22.11",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@swc/core": "^1.3.86",
"@swc/jest": "^0.2.29",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/emoji-mart": "3.0.14",
"@types/jest": "^29.5.13",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.escaperegexp": "^4.1.6",
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.range": "^3.2.9",
"@types/ramda": "^0.30.2",
"@types/react": "18.0.25",
"@types/react-dom": "18.2.7",
"@types/react-window": "^1.8.8",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vusion/webfonts-generator": "^0.8.0",
"@xstyled/styled-components": "^3.7.3",
"aws-sdk": "^2.1691.0",
"babel-jest": "29.7.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"colors": "^1.4.0",
"conventional-github-releaser": "^3.1.3",
"date-fns": "^4.1.0",
"depcheck": "^1.4.7",
"esbuild": "^0.17.11",
"esbuild-plugin-replace": "^1.4.0",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"esm": "^3.2.25",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-styled-components": "7.2.0",
"lerna": "^8.1.8",
"lodash.difference": "^4.5.0",
"minimist": "1.2.8",
"onchange": "^7.0.2",
"postcss-styled-syntax": "^0.6.4",
"react": "^18.1.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.1.0",
"react-router-dom": "6.27.0",
"rimraf": "^4.1.1",
"standard-version": "9.5.0",
"styled-components": "^5.3.9",
"svgo": "^3.0.1",
"typescript": "5.0.2",
"wttj-config": "^3.0.1",
"yargs": "^17.7.2"
},
"resolutions": {
"@babel/traverse": ">=7.23.2",
"@types/react": "18.0.25",
"styled-components": "5.3.9",
"loader-utils": "2.0.3"
},
"homepage": "https://welcome-ui.com",
"dependencies": {}
}