-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.47 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
115
116
117
118
119
120
121
122
123
{
"name": "@keyvaluesystems/react-star-rating-summary",
"version": "1.2.0",
"description": "A ready to use rating summary component",
"main": "build/index.js",
"source": "src/index.tsx",
"types": "build/types/index.d.ts",
"scripts": {
"start": "webpack watch && tsc",
"build": "webpack && tsc",
"eslint": "eslint src",
"test": "jest --config ./jest.config.js",
"coverage": "npm run test -- --coverage",
"trypublish": "npm publish || true",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettier": "prettier --write --ignore-path .prettierignore \"src/**/*\""
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "github",
"url": "git+https://github.com/KeyValueSoftwareSystems/react-star-rating-summary"
},
"author": "Keyvalue",
"license": "MIT",
"homepage": "https://github.com/KeyValueSoftwareSystems/react-star-rating-summary",
"keywords": [
"library",
"starter",
"es6",
"react",
"package",
"react-package",
"typescript",
"rating",
"star-rating",
"five-star-rating",
"star-rating-component",
"star-rating-widget",
"review"
],
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-typescript": "^7.20.13",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-preset-minify": "^0.5.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.3",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.5",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.11.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"eslintConfig": {
"extends": "./.eslintrc.json"
},
"files": [
"build"
],
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
]
},
"bugs": {
"url": "https://github.com/KeyValueSoftwareSystems/react-vertical-stepper/issues"
},
"dependencies": {}
}