-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
82 lines (82 loc) · 1.86 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
76
77
78
79
80
81
82
{
"name": "react-calendar-component",
"version": "3.0.0",
"description": "React.js calendar component.",
"repository": {
"type": "git",
"url": "[email protected]:hanse/react-calendar"
},
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"clean": "rm -rf lib dist",
"build": "babel src --ignore __tests__ --out-dir lib",
"lint": "eslint src --ignore-path .gitignore",
"test": "jest",
"prepublish": "yarn run build"
},
"author": "Hanse",
"license": "MIT",
"keywords": [
"react",
"react.js",
"calendar",
"react component",
"react calendar component",
"clndr"
],
"peerDependencies": {
"react": "15.x || 16.x"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-config-react-app": "^3.0.7",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"react": "^16.8.3",
"react-test-renderer": "^16.8.3",
"timekeeper": "^2.1.2"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"classnames": "^2.2.5",
"moment": "^2.19.1",
"prop-types": "^15.7.2"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:react/recommended",
"prettier",
"prettier/react"
],
"plugins": [
"react",
"prettier",
"import"
],
"rules": {
"prettier/prettier": [
2,
{
"singleQuote": true
}
]
},
"env": {
"browser": true,
"jest": true
}
}
}