forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.74 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
{
"name": "@rocket.chat/fuselage-ui-kit",
"version": "0.31.18",
"description": "UiKit elements for Rocket.Chat Apps built under Fuselage design system",
"homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/fuselage-ui-kit"
},
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "run-s .:build:clean .:build:esm .:build:cjs",
".: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",
"lint-staged": "lint-staged",
"docs": "cross-env NODE_ENV=production build-storybook -o ../../static/fuselage-ui-kit",
"storybook": "start-storybook -p 6006",
"build-storybook": "cross-env NODE_ENV=production build-storybook",
"bump-next": "bump-next"
},
"peerDependencies": {
"@rocket.chat/fuselage": "*",
"@rocket.chat/fuselage-hooks": "*",
"@rocket.chat/fuselage-polyfills": "*",
"@rocket.chat/icons": "*",
"@rocket.chat/styled": "*",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@rocket.chat/apps-engine": "~1.30.0",
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/fuselage": "workspace:~",
"@rocket.chat/fuselage-hooks": "workspace:~",
"@rocket.chat/fuselage-polyfills": "workspace:~",
"@rocket.chat/icons": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"@rocket.chat/styled": "workspace:~",
"@storybook/addon-essentials": "~6.4.18",
"@storybook/addons": "~6.4.18",
"@storybook/builder-webpack5": "~6.4.18",
"@storybook/manager-webpack5": "~6.4.18",
"@storybook/react": "~6.4.18",
"@storybook/source-loader": "~6.4.18",
"@storybook/theming": "~6.4.18",
"@types/react": "~17.0.39",
"@types/react-dom": "^17.0.11",
"babel-loader": "~8.2.3",
"bump": "workspace:~",
"cross-env": "^7.0.3",
"eslint": "~8.8.0",
"lint-all": "workspace:~",
"lint-staged": "~12.3.3",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "~2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "~4.3.5",
"webpack": "~5.68.0",
"write-version-module": "workspace:~"
},
"dependencies": {
"@rocket.chat/ui-kit": "workspace:~",
"tslib": "^2.3.1"
}
}