-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.76 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.76 KB
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
{
"name": "react-dates-lite",
"version": "0.0.46",
"description": "React calendar component for selecting dates",
"main": "lib/index.js",
"typings": "lib/typings.d.ts",
"author": "Dominik Chrastek",
"license": "MIT",
"keywords": [
"react",
"react.js",
"calendar",
"react component",
"react calendar component",
"react dates component"
],
"scripts": {
"clean": "rimraf lib && rimraf es",
"start": "webpack-dev-server --config etc/webpack.dev.js --inline --hot",
"build": "gulp build",
"eslint": "eslint --ext .js --ext .jsx .",
"eslint:fix": "eslint --fix --ext .js --ext .jsx .",
"test": "TZ=UTC jest",
"test:watch": "TZ=UTC jest --watch",
"test:coverage": "TZ=UTC jest --coverage",
"test:u": "TZ=UTC jest --u",
"storybook": "start-storybook -p 6006",
"flow": "flow",
"deploy-storybook": "storybook-to-ghpages",
"prepare": "npm run clean && npm run build"
},
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"styled-components": "^4.0.0"
},
"dependencies": {
"date-fns": "~2.4.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.0.12",
"@storybook/addon-knobs": "^4.0.12",
"@storybook/addon-links": "^4.0.12",
"@storybook/addons": "^4.0.12",
"@storybook/react": "^4.0.12",
"@storybook/storybook-deployer": "^2.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-ramda": "^1.6.3",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.87.0",
"flow-typed": "^2.5.1",
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "^8.0.0",
"gulp-plumber": "^1.2.1",
"jest": "^23.6.0",
"mockdate": "^2.0.2",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"regenerator-runtime": "^0.13.1",
"styled-components": "^4.4.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"files": [
"lib",
"es",
"README.md",
"CHANGELOG.md"
],
"jest": {
"setupFiles": [
"raf/polyfill",
"./etc/jestSetup.js"
]
}
}