forked from yannisvanlaerhoven3/planby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 1.87 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "planby",
"author": "Karol Kozer",
"version": "1.1.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/karolkozer/planby"
},
"homepage": "https://planby.netlify.app",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/planby"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build && bundlewatch",
"size": "bundlewatch",
"test:watch": "jest --watchAll"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/planby.esm.js",
"bundlewatch": {
"files": [
{
"path": "dist/planby.cjs.production.min.js",
"maxSize": "30kB"
},
{
"path": "dist/planby.esm.js",
"maxSize": "30kB"
}
]
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^2.0.0",
"use-debounce": "^7.0.1"
},
"keywords": [
"epg",
"schedule",
"harmongram",
"react",
"hooks",
"electronic",
"program",
"guide",
"timeline",
"events"
],
"devDependencies": {
"@faker-js/faker": "^6.1.2",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"bundlewatch": "^0.3.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"size-limit": "^7.0.8",
"ts-jest": "^27.1.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
}
}