This repository has been archived by the owner on May 18, 2022. It is now read-only.
forked from benjackwhite/react-quick-cal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "react-quick-cal",
"version": "0.2.6",
"description": "Big calendar React component",
"main": "dist/ReactCalendar.js",
"scripts": {
"test": "jest",
"start": "NODE_ENV=development webpack-dev-server --progress",
"build": "rm -r dist/ & NODE_ENV=build webpack && NODE_ENV=build-min webpack",
"build-demo": "rm -r build/ & NODE_ENV=demo webpack",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjackwhite/react-quick-cal.git"
},
"keywords": [
"calendar",
"react"
],
"author": "Ben White <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjackwhite/react-quick-cal/issues"
},
"homepage": "https://github.com/benjackwhite/react-quick-cal#readme",
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"date-fns": "^1.28.5",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.1.0",
"node-sass": "^4.5.3",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"peerDependencies": {
"date-fns": "^1.28.5",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
}
}