-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
{
"name": "revo-calendar",
"version": "3.2.3",
"description": "React Event Calendar Component",
"author": {
"name": "Gabriel Molter",
"url": "https://gabrielmolter.com/"
},
"license": "MIT",
"repository": "gjmolter/revo-calendar",
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.tsx",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"build": "rollup -c"
},
"homepage": "https://gjmolter.github.io/revo-calendar/",
"keywords": [
"event",
"calendar",
"modern",
"responsive",
"react",
"customizable"
],
"dependencies": {
"@babel/runtime": "^7.14.0",
"styled-components": "^5.3.0"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.8",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.9",
"babel-plugin-styled-components": "^2.0.1",
"jest": "^27.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.2",
"rollup": "^2.50.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.3.2"
},
"files": [
"dist"
]
}