-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.13 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": "react-svg-star-rating",
"version": "2.1.1",
"description": "The React component for star rating",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack --display-chunks",
"start": "NODE_ENV=development webpack-dev-server",
"prepublishOnly": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.3",
"@types/classnames": "^2.2.7",
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"html-webpack-plugin": "^4.0.0-beta.5",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"ts-loader": "^5.3.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"prettier": "^2.0.5"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"author": "nick-prnd <nick@prnd.co.kr>",
"keywords": [
"react",
"component",
"svg",
"star",
"rating",
"rate",
"input",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/PRNDcompany/ReactSvgStarRating.git"
},
"homepage": "https://github.com/PRNDcompany/ReactSvgStarRating",
"bugs": {
"url": "https://github.com/PRNDcompany/ReactSvgStarRating/issues",
"email": "nick@prnd.co.kr"
}
}