-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "react-daypicker",
"version": "3.0.10",
"description": "A simple datepicker inspired by Pikaday.",
"main": "lib/DayPicker.js",
"keywords": [
"date",
"datepicker",
"pikaday",
"dates",
"react",
"calendar"
],
"author": "Cymen Vig <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">=0.15"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "7.0.0",
"@storybook/addon-actions": "5.0.11",
"@storybook/addon-links": "5.0.11",
"@storybook/react": "5.0.11",
"@storybook/storybook-deployer": "2.8.1",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"node-sass": "^4.12.0",
"sass-loader": "7.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cymen/react-daypicker.git"
},
"homepage": "https://github.com/cymen/react-daypicker",
"bugs": {
"url": "https://github.com/cymen/react-daypicker/issues"
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
],
"scripts": {
"build": "babel src -d lib && ./node_modules/node-sass/bin/node-sass src/DayPicker.scss > lib/DayPicker.css",
"deploy-storybook": "storybook-to-ghpages",
"storybook": "start-storybook -p 6006",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "babel -w src -d lib"
}
}