-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
98 lines (98 loc) · 3.11 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
{
"name": "ingred-ui",
"version": "19.2.2",
"description": "",
"author": "CARTA HOLDINGS, Inc.",
"license": "MIT",
"repository": "https://github.com/voyagegroup/ingred-ui",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": "^18.x || >=20.0.0"
},
"scripts": {
"test": "cross-env CI=1 jest --runInBand",
"test:watch": "jest --watchAll",
"test:update": "jest --updateSnapshot",
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
"start": "rollup -c -w",
"playground": "yarn build && cd testEnv && yarn install && yarn start",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"generate": "yarn scaffdog generate",
"release": "changeset tag && changeset publish"
},
"dependencies": {
"@floating-ui/react": "^0.26.0",
"dayjs": "^1.11.6",
"react-select": "^5.7.0",
"react-transition-group": "^4.4.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"styled-components": ">= 5.X"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@rollup/plugin-commonjs": "25.0.0",
"@rollup/plugin-node-resolve": "15.2.1",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "11.1.1",
"@rollup/plugin-url": "8.0.1",
"@storybook/addon-essentials": "7.5.2",
"@storybook/addon-links": "7.4.0",
"@storybook/addon-storysource": "7.5.3",
"@storybook/react": "7.5.3",
"@storybook/react-vite": "7.5.3",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.1.2",
"@types/jest": "29.5.1",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@types/react-transition-group": "4.4.4",
"@types/rollup-plugin-peer-deps-external": "2.2.1",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.10.0",
"cross-env": "7.0.3",
"eslint": "8.51.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"rollup": "4.27.3",
"rollup-plugin-imagemin": "0.5.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"scaffdog": "3.0.0",
"storybook": "7.5.3",
"styled-components": "5.3.5",
"ts-jest": "29.1.0",
"typescript": "5.2.2",
"vite": "4.5.5"
},
"files": [
"dist"
],
"resolutions": {
"colors": "1.4.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5"
}
}