-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "@jottaxwds/react-search-highlighting",
"version": "1.0.2",
"description": "React Search Highlighting",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jottaxwds/react-search-highlighting"
},
"keywords": [
"react",
"highlight",
"search highlight",
"string highlighting",
"string highlight",
"highlighting"
],
"files": [
"dist"
],
"scripts": {
"old:build": "rm -rf ./dist && npm run build:esm && npm run build:cjs",
"build": "rm -rf ./dist && npm run build:esm",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build:watch": "nodemon --watch src --ext ts,json --exec \"npm run build\"",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "jottaxwds",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@storybook/addon-actions": "^7.0.0-rc.8",
"@storybook/addon-essentials": "^7.0.0-rc.8",
"@storybook/addon-interactions": "^7.0.0-rc.8",
"@storybook/addon-links": "^7.0.0-rc.8",
"@storybook/addon-mdx-gfm": "^7.0.0-rc.8",
"@storybook/react": "^7.0.0-rc.8",
"@storybook/react-webpack5": "^7.0.0-rc.8",
"@storybook/testing-library": "^0.0.14-next.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.9",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@types/react-intl": "^3.0.0",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.3.0",
"dayjs": "^1.11.7",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"nodemon": "^2.0.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-rc.8",
"styled-components": "^5.3.9",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2",
"webpack": "^5.76.3"
},
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}