-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "kk-react-paginate",
"version": "1.3.0",
"author": "Krzysztof Furtak",
"description": "Pagination component for ReactJS",
"keywords": [
"react",
"reactjs",
"pagination",
"paginator"
],
"license": "MIT",
"main": "lib/index.js",
"private": false,
"directories": {
"lib": "lib"
},
"files": [
"CHANGELOG.md",
"package.json",
"package-lock.json",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/KrzysiekF/kk-react-paginate.git"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.6.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-actions": "^6.2.7",
"@storybook/addon-essentials": "^6.2.7",
"@storybook/addon-knobs": "^6.2.7",
"@storybook/addon-links": "^6.2.7",
"@storybook/node-logger": "^6.2.7",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.7",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"copyfiles": "^2.4.1",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"prettier": "^2.2.1",
"react-scripts": "4.0.3",
"semantic-release": "^17.4.2",
"storybook-readme": "^5.0.9",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"clean": "rm -rf ./lib",
"prebuild": "npm run clean",
"build": "tsc --build \"./tsconfig.json\"",
"start": "start-storybook -p 9009 -s public",
"test": "react-scripts test --watchAll=false",
"build-storybook": "build-storybook",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"semantic-release": "semantic-release",
"deploy-storybook": "storybook-to-ghpages"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}