-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.2 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
{
"name": "easy-ui",
"version": "0.0.0",
"private": true,
"description": "Resources, components, and guidelines behind UI at EasyPost",
"author": "EasyPost",
"repository": {
"type": "git",
"url": "https://github.com/EasyPost/easy-ui.git"
},
"bugs": {
"url": "https://github.com/EasyPost/easy-ui/issues"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"react",
"components",
"library",
"design-system"
],
"workspaces": [
"easy-ui-icons",
"easy-ui-react",
"easy-ui-tokens",
"easy-ui-tsconfig",
"stylelint-easy-ui",
"eslint-config-easy-ui"
],
"scripts": {
"build": "FORCE_COLOR=1 turbo run build",
"build:icons": "FORCE_COLOR=1 turbo run build --filter=@easypost/easy-ui-icons",
"build:react": "FORCE_COLOR=1 turbo run build --filter=@easypost/easy-ui",
"build:storybook": "storybook build",
"build:tokens": "FORCE_COLOR=1 turbo run build --filter=@easypost/easy-ui-tokens",
"changes:add": "changeset add",
"changes:publish": "FORCE_COLOR=1 turbo run build && changeset publish",
"changes:status": "changeset status",
"changes:version": "changeset version",
"clean": "FORCE_COLOR=1 turbo run clean && rm -rf ./node_modules",
"dev": "FORCE_COLOR=1 turbo run dev",
"format": "prettier . --write",
"lint": "FORCE_COLOR=1 turbo run lint",
"start:storybook": "storybook dev -p 9003",
"test": "FORCE_COLOR=1 turbo run test",
"test:watch:react": "npm run test:watch --workspace @easypost/easy-ui"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@changesets/cli": "^2.27.10",
"@storybook/addon-a11y": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/blocks": "7.6.20",
"@storybook/manager-api": "7.6.20",
"@storybook/react": "7.6.20",
"@storybook/react-vite": "7.6.20",
"@storybook/testing-library": "^0.2.2",
"babel-loader": "^9.2.1",
"eslint": "^8.57.1",
"glob": "^8.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "7.6.20",
"stylelint": "^16.10.0",
"turbo": "^1.13.4",
"typescript": "~5.5.4",
"vite": "^5.4.11",
"vitest": "^1.6.0"
}
}