-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.14 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
{
"name": "react-calendar-full",
"version": "0.3.0",
"description": "A full-featured React calendar component with event scheduling and monthly, weekly, and daily views.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"files": [
"dist/cjs/**",
"dist/esm/**",
"dist/types/**",
"dist/umd/**"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types && npm run build:demo",
"build:cjs": "tsc -p tsconfig.cjs.json && cp ./src/calendar.css ./dist/cjs/",
"build:esm": "tsc -p tsconfig.esm.json && cp ./src/calendar.css ./dist/esm/",
"build:umd": "webpack --mode production",
"build:types": "tsc -p tsconfig.types.json",
"build:demo": "webpack --config webpack.demo.config.js --mode production && cp demo/index.html dist/demo",
"clean": "node bin/clean.js",
"clean:build": "npm run clean && npm run build",
"format": "eslint --ext js,ts,tsx src --fix && prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint 'src/**/*.{js,ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonmbake/react-calendar-full.git"
},
"keywords": [
"React",
"Calendar",
"Component",
"Events",
"Week",
"Month",
"Day"
],
"author": "Jon Bake",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonmbake/react-calendar-full/issues"
},
"homepage": "https://github.com/jonmbake/react-calendar-full#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"css-loader": "^6.8.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"bootstrap": "^5.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}