-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
120 lines (120 loc) · 3.94 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
{
"name": "@lifeomic/chroma-react",
"version": "0.0.0",
"description": "Chroma Design System",
"sideEffects": false,
"repository": "[email protected]:lifeomic/chroma-react.git",
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-p build:*",
"build:esm": "tsc -p tsconfig.build.json -m es2015 --outDir ./dist/esm && cp -r ./src/assets/*.svg ./dist/esm/assets/",
"build:cjs": "tsc -p tsconfig.build.json -m commonjs --outDir ./dist && cp -r ./src/assets/*.svg ./dist/assets/",
"postbuild": "cp package.json ./dist/",
"docs:build": "storybook build -c .storybook -s public",
"docs:deploy": "storybook-to-ghpages --s docs:build",
"docs:start": "storybook dev -p 9001 -c .storybook -s public",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"watch": "run-p \"build:* -- --watch\"",
"clean": "rm -rf dist/ deploy/docs",
"lint": "eslint --ext .ts,.tsx.js,.jsx .",
"start": "yarn docs:start",
"test": "TZ=UTC jest"
},
"engines": {
"node": "16.x || 18.x || 20.x"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"peerDependencies": {
"@lifeomic/chromicons": ">=3.0.0",
"react": "16",
"react-dom": "16",
"react-router-dom": ">=5.1.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@lifeomic/chromicons": "^3.4.0",
"@storybook/addon-a11y": "^7.3.2",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-docs": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-webpack5": "^7.3.2",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/theming": "^7.3.2",
"@testing-library/dom": "^7.2.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "^16.0.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-json-tree": "^0.6.11",
"@types/react-phone-number-input": "^3.0.7",
"@types/react-router-dom": "^5.1.4",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-loader": "^8.2.5",
"conventional-changelog-conventionalcommits": "^5.0.0",
"dayjs": "^1.10.7",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-json-tree": "^0.11.2",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.13.1",
"reakit-test-utils": "^0.11.1",
"semantic-release": "^19.0.5",
"storybook": "^7.3.2",
"ts-jest": "^29.0.5",
"ts-loader": "^8.1.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.9.1",
"@mui/styles": "^5.9.1",
"@radix-ui/react-slider": "^0.1.1",
"clsx": "^1.1.0",
"deepmerge": "^4.2.2",
"focus-visible": "^5.1.0",
"framer-motion": "^5.6.0",
"react-day-picker": "^7.4.10",
"react-focus-lock": "^2.3.1",
"react-hotkeys": "^2.0.0",
"react-merge-refs": "^1.1.0",
"react-phone-number-input": "^3.1.23",
"react-remove-scroll": "^2.3.0",
"reakit": "1.0.0-rc.1"
},
"resolutions": {
"jsdom": "^16.3.0"
}
}