-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.46 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
{
"name": "@landbot/lui",
"version": "7.17.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"sideEffects": false,
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "jest --collect-coverage --ci",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"clean": "npx rimraf ./dist",
"build": "npm run clean && npm run build:prod",
"build:prod": "rollup -c",
"pack": "npm run build && npm pack",
"start": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit -w"
},
"exports": {
".": "./dist/index.js",
"./icons": "./dist/components/icon/icons/index.js"
},
"typesVersions": {
"*": {
"icons": [
"dist/components/icon/icons/index.d.ts"
]
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/landbot-org/lui.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/landbot-org/lui/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/landbot-org/lui#readme",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.26.1",
"styled-components": "^6.1.12"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@landbot/eslint-config-typescript-react": "^3.2.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-themes": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^7.6.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"@types/react-router-dom": "^5.3.3",
"@types/rollup-plugin-peer-deps-external": "^2.2.4",
"@types/styled-components": "^5.1.34",
"babel-loader": "^8.2.5",
"chromatic": "^10.2.0",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^19.0.5",
"storybook": "^7.6.7",
"styled-components": "^6.1.12",
"tslib": "^2.4.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@floating-ui/react": "^0.24.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/pro-light-svg-icons": "^6.6.0",
"@fortawesome/pro-regular-svg-icons": "^6.6.0",
"@fortawesome/pro-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@lexical/react": "^0.16.1",
"lexical": "^0.16.1",
"react-icons": "^5.0.1"
}
}