-
Notifications
You must be signed in to change notification settings - Fork 154
/
package.json
99 lines (99 loc) · 2.92 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
{
"name": "@rocket.chat/onboarding-ui",
"version": "0.34.0",
"description": "Set of components and functions for the onboarding experience on Rocket.Chat",
"keywords": [
"rocketchat"
],
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"homepage": "https://github.com/RocketChat/fuselage#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/onboarding-ui"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "run-s .:build:clean .:build:cjs .:build:esm",
".:build:clean": "rimraf dist",
".:build:esm": "tsc -p tsconfig.esm.json",
".:build:cjs": "tsc -p tsconfig.cjs.json",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"test": "jest --runInBand",
"docs": "typedoc",
"storybook": "storybook dev -p 6006 --no-version-updates",
"build-storybook": "storybook build"
},
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"devDependencies": {
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/fuselage": "workspace:~",
"@rocket.chat/fuselage-hooks": "workspace:~",
"@rocket.chat/fuselage-polyfills": "workspace:~",
"@rocket.chat/fuselage-tokens": "workspace:~",
"@rocket.chat/icons": "workspace:~",
"@rocket.chat/layout": "workspace:~",
"@rocket.chat/logo": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"@rocket.chat/styled": "workspace:~",
"@storybook/addon-a11y": "~8.3.6",
"@storybook/addon-essentials": "~8.3.6",
"@storybook/addon-webpack5-compiler-swc": "~1.0.5",
"@storybook/react": "~8.3.6",
"@storybook/react-webpack5": "~8.3.6",
"@storybook/theming": "~8.3.6",
"@types/jest": "~29.5.12",
"@types/react": "~17.0.80",
"@types/react-dom": "~17.0.25",
"countries-list": "^2.6.1",
"eslint": "~8.45.0",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"lint-all": "workspace:~",
"npm-run-all": "^4.1.5",
"prettier": "~3.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "~11.15.7",
"rimraf": "^3.0.2",
"storybook": "~8.3.6",
"storybook-dark-mode": "~4.0.2",
"ts-jest": "~29.2.4",
"typedoc": "~0.25.13",
"typescript": "~5.6.3"
},
"dependencies": {
"i18next": "~21.6.16",
"react-hook-form": "~7.27.1"
},
"peerDependencies": {
"@rocket.chat/fuselage": "*",
"@rocket.chat/fuselage-hooks": "*",
"@rocket.chat/fuselage-polyfills": "*",
"@rocket.chat/icons": "*",
"@rocket.chat/layout": "*",
"@rocket.chat/logo": "*",
"@rocket.chat/styled": "*",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "~11.15.4"
},
"volta": {
"extends": "../../package.json"
}
}