forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 4.11 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"private": true,
"name": "fullcalendar-workspace",
"version": "5.10.0",
"title": "FullCalendar",
"description": "Full-sized drag & drop event calendar",
"keywords": [
"calendar",
"event",
"full-sized"
],
"homepage": "https://fullcalendar.io/",
"docs": "https://fullcalendar.io/docs",
"bugs": "https://fullcalendar.io/reporting-bugs",
"repository": {
"type": "git",
"url": "https://github.com/fullcalendar/fullcalendar.git",
"homepage": "https://github.com/fullcalendar/fullcalendar"
},
"license": "MIT",
"author": {
"name": "Adam Shaw",
"email": "[email protected]",
"url": "http://arshaw.com/"
},
"copyright": "2021 Adam Shaw",
"workspaces": [
"packages/*",
"packages-premium/*",
"packages-contrib/*",
"packages-contrib/angular/dist/fullcalendar",
"example-projects/*"
],
"scripts": {
"preinstall": "node ./scripts/ensure-yarn.js",
"build": "gulp build",
"watch": "gulp watch",
"contrib:run": "node ./scripts/contrib-run.js",
"example:run": "node ./scripts/example-run.js",
"example:lint": "node ./scripts/example-lint.js",
"example:npm": "node ./scripts/example-npm.js",
"example:pnp": "node ./scripts/example-pnp.js",
"example:open": "./scripts/example-open.sh",
"clean": "./scripts/clean.sh",
"lint": "gulp lint",
"lintBuilt": "gulp lintBuilt",
"lintExamples": "node ./scripts/example-lint.js",
"eslint:dir": "node ./scripts/eslint-dir.js",
"test": "gulp test",
"test:ci": "gulp testCi",
"archive": "gulp archive",
"ci:all": "./scripts/ci-all.sh",
"update-readmes": "node ./scripts/update-readmes.js",
"update-licenses": "node ./scripts/update-licenses.js",
"update-package-jsons": "node ./scripts/update-package-jsons.js",
"preversion": "./scripts/update-example-dates.sh && yarn run clean",
"xxxversion": "yarn run ci && yarn run archive",
"xxxpostversion": "echo 'EXEC: git push --recurse-submodules=on-demand' && echo 'STILL NEED TO PUSH ALL TAGS'"
},
"devDependencies": {
"@arshaw/postcss-calc": "^7.0.2",
"@arshaw/postcss-custom-properties": "^9.1.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/luxon": "^1.12.0",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.6.1",
"@yarnpkg/pnpify": "^2.4.0",
"autoprefixer": "^9.8.4",
"bootstrap": "^3.4.1",
"chokidar": "^2.1.5",
"concurrently": "^4.1.1",
"css-loader": "^4.3.0",
"dragula": "^3.7.2",
"eslint": "^7.24.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"globby": "^11.0.1",
"gulp": "^4.0.2",
"gulp-cssmin": "^0.2.0",
"gulp-modify-file": "^1.0.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-terser": "^1.2.0",
"gulp-zip": "^5.0.0",
"handlebars": "^4.1.2",
"jasmine-core": "2.5.2",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-verbose-reporter": "0.0.6",
"luxon": "^1.22.0",
"mini-css-extract-plugin": "^1.2.0",
"moment": "^2.29.1",
"moment-locales-webpack-plugin": "^1.2.0",
"moment-timezone": "^0.5.31",
"moment-timezone-data-webpack-plugin": "^1.3.0",
"postcss": "^7.0.30",
"postcss-advanced-variables": "^3.0.1",
"postcss-comment": "^2.0.0",
"postcss-loader": "^3.0.0",
"postcss-nesting": "^7.0.1",
"react": "^17.0.1",
"rollup": "^2.49.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-postcss": "^3.1.3",
"rollup-plugin-sourcemaps": "^0.6.2",
"semver": "^7.3.2",
"source-map-loader": "^1.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.6.1",
"ts-loader": "^7.0.4",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.1.0"
}
}