-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
94 lines (94 loc) · 2.27 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
94
{
"name": "@bitnoi.se/react-scheduler",
"version": "0.3.0",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bitnoise/react-scheduler"
},
"keywords": [
"scheduler",
"gantt",
"gantt chart",
"react",
"timeline",
"calendar"
],
"author": {
"name": "Bitnoise",
"url": "https://scheduler.bitnoise.pl/"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"typecheck": "tsc -b",
"prepare": "husky install"
},
"main": "dist/index.umd.js",
"modules": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn run lint"
]
},
"dependencies": {
"dayjs": "1.11.7",
"lodash.debounce": "4.0.8",
"path": "0.12.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"styled-components": "5.3.8",
"styled-normalize": "8.0.7"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@types/datejs": "0.0.32",
"@types/lodash.debounce": "4.0.7",
"@types/node": "18.15.11",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"@vitejs/plugin-react": "3.1.0",
"babel-plugin-styled-components": "2.0.7",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.0",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"rollup-plugin-visualizer": "5.9.0",
"typescript": "4.9.3",
"vite": "4.1.0",
"vite-plugin-dts": "2.2.0",
"vite-plugin-svgr": "2.4.0"
}
}