Skip to content

Commit eb09fa9

Browse files
committed
Initial structure
0 parents  commit eb09fa9

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2016", "stage-2", "react"]
3+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
*.log
3+
dist

.npmignore

Whitespace-only changes.

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "react-bootstrap-date-range",
3+
"version": "0.1.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "",
10+
"license": "ISC",
11+
"devDependencies": {
12+
"prettier": "^0.22.0"
13+
},
14+
"peerDependencies": {
15+
"react": "^15.4.2",
16+
"react-bootstrap": "^0.30.8",
17+
"react-dom": "^15.4.2"
18+
},
19+
"dependencies": {
20+
"babel-cli": "^6.23.0",
21+
"babel-preset-es2016": "^6.22.0",
22+
"babel-preset-react": "^6.23.0",
23+
"babel-preset-stage-0": "^6.22.0"
24+
}
25+
}

0 commit comments

Comments
 (0)