-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.47 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.47 KB
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
{
"name": "@rocket.chat/fuselage-forms",
"version": "1.1.1",
"description": "A set of component wrappers to provide ease of use and accessibility out-of-box.",
"homepage": "https://github.com/RocketChat/fuselage#readme",
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/fuselage-forms"
},
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"scripts": {
".:build:clean": "rimraf dist",
".:build:cjs": "tsc -p tsconfig.cjs.json",
".:build:esm": "tsc -p tsconfig.esm.json",
"storybook": "storybook dev -p 6006 --no-version-updates",
"build": "run .:build:clean && run .:build:esm && run .:build:cjs",
"clean": "rimraf dist",
"docs": "cross-env NODE_ENV=production storybook build -o ../../static/fuselage-forms",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"test": "jest --runInBand"
},
"devDependencies": {
"@rocket.chat/fuselage": "workspace:~",
"@rocket.chat/fuselage-hooks": "workspace:~",
"@rocket.chat/fuselage-tokens": "workspace:~",
"@rocket.chat/storybook-dark-mode": "workspace:~",
"@storybook/addon-docs": "~9.1.17",
"@storybook/addon-webpack5-compiler-swc": "~4.0.3",
"@storybook/react-webpack5": "~9.1.17",
"@testing-library/jest-dom": "~6.9.1",
"@testing-library/react": "~16.3.2",
"@testing-library/user-event": "~14.6.1",
"@types/jest": "~30.0.0",
"@types/jest-axe": "~3.5.9",
"@types/react": "~18.3.27",
"@types/react-dom": "~18.3.7",
"cross-env": "^10.1.0",
"eslint": "~9.39.2",
"jest": "~30.3.0",
"jest-axe": "~10.0.0",
"jest-environment-jsdom": "~30.3.0",
"lint-all": "workspace:~",
"prettier": "~3.6.2",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"rimraf": "~6.0.1",
"storybook": "~9.1.19",
"ts-jest": "~29.4.9",
"typescript": "~5.9.3",
"webpack": "~5.106.2"
},
"peerDependencies": {
"@rocket.chat/fuselage": "*",
"@rocket.chat/fuselage-hooks": "*",
"react": "*",
"react-dom": "*"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rocket.chat/emitter": "workspace:~",
"react-aria": "~3.37.0"
}
}