-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "react-advanced-ellipsis",
"version": "0.1.0",
"description": "Truncate string where you want",
"author": "Vladimir Ivakin",
"license": "MIT",
"homepage": "https://github.com/Minhir/react-advanced-ellipsis",
"keywords": [
"react",
"ellipsis"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Minhir/react-advanced-ellipsis.git"
},
"devDependencies": {
"@faker-js/faker": "^7.5.0",
"@storybook/addon-actions": "6.5.12",
"@storybook/addon-essentials": "6.5.12",
"@storybook/cli": "6.5.12",
"@storybook/react": "6.5.12",
"@types/react": "^18.0.21",
"ag-grid-react": "^28.1.1",
"prettier": "2.7.1",
"react-dom": "^18.2.0",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^18"
},
"scripts": {
"build": "tsc",
"build:storybook": "build-storybook --output-dir storybook-static",
"clean": "rm -rf dist",
"storybook": "start-storybook -p 6006",
"lint": "prettier --check ./src"
}
}