-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.53 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
{
"name": "@sstraatemans/react-readmore",
"version": "1.0.5",
"description": "a fully customizable read more component for React",
"author": "Steven Straatemans <[email protected]>",
"license": "MIT",
"homepage": "https://react-read-more.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/sstraatemans/react-read-more.git"
},
"main": "dist/index.js",
"scripts": {
"build:ts": "npx rollup -c --compact --minifyInternalExports",
"start": "start-storybook",
"build": "build-storybook -c .storybook -o public",
"typecheck": "tsc --noEmit",
"jest": "jest",
"jest:watch": "jest --watch",
"jest:coverage": "jest --coverage --collectCoverageFrom='[\"src/**/*.{ts,tsx}\",\"!src/**/*.stories.*\"]'",
"lint": "eslint . --cache --ext js,jsx,ts,tsx",
"test": "npm run lint && npm run typecheck && npm run jest",
"prepublishOnly": "npm run build:ts"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"autoprefixer": "^9.0.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"classnames": "^2.2.6",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"node-sass": "^5.0.0",
"postcss": "^8.2.2",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.35.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"sass-loader": "^10.1.0",
"ts-jest": "^26.4.4",
"ts-lint": "^4.5.1",
"typescript": "^4.1.3"
},
"dependencies": {}
}