-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
{
"name": "npm-react-component-kit",
"version": "1.0.2",
"description": "react component kit for publishing npm package",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"build": "babel src -d dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prasanthLalapeta/npm-react-component-kit.git"
},
"keywords": [
"react",
"npm",
"package"
],
"author": "prasanth kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/prasanthLalapeta/npm-react-component-kit/issues"
},
"homepage": "https://github.com/prasanthLalapeta/npm-react-component-kit#readme",
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-dynamic-import-node": "1.0.2",
"babel-plugin-react-intl": "2.3.1",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-styled-components": "1.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-preset-env": "1.5.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"html-webpack-plugin": "3.2.0",
"style-loader": "0.18.1",
"url-loader": "^1.1.2",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}