forked from fullcalendar/fullcalendar-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.89 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
{
"private": true,
"version": "1.0.0",
"license": "ISC",
"author": "Adam Shaw <[email protected]> (http://arshaw.com/)",
"description": "Documentation for the FullCalendar project",
"homepage": "https://github.com/fullcalendar/fullcalendar-site-static#readme",
"bugs": {
"url": "https://github.com/fullcalendar/fullcalendar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fullcalendar/fullcalendar-site-static.git"
},
"scripts": {
"install-misc": "bundle install",
"dev": "concurrently --raw 'yarn run webpack-dev' 'yarn run jekyll-dev'",
"build": "yarn run webpack-build && yarn run jekyll-build",
"clean": "yarn run webpack-clean && yarn run jekyll-clean",
"jekyll-dev": "yarn run jekyll-clean && RUBYOPT='-W0' bundle exec jekyll serve --watch --incremental",
"jekyll-build": "RUBYOPT='-W0' JEKYLL_ENV=build bundle exec jekyll build",
"jekyll-clean": "bundle exec jekyll clean",
"webpack-dev": "webpack --watch",
"webpack-build": "webpack --mode production --no-devtool",
"webpack-clean": "rm -rf dist",
"lint": "./scripts/lintspaces.cjs && ./scripts/htmlproofer.sh"
},
"dependencies": {
"@fullcalendar/bootstrap5": "~5.10.2",
"@fullcalendar/core": "~5.10.1",
"@fullcalendar/daygrid": "~5.10.1",
"@fullcalendar/interaction": "~5.10.1",
"@fullcalendar/list": "~5.10.1",
"@fullcalendar/resource-timegrid": "~5.10.1",
"@fullcalendar/resource-timeline": "~5.10.1",
"@fullcalendar/timegrid": "~5.10.1",
"accordion": "^3.0.2"
},
"devDependencies": {
"concurrently": "^4.1.2",
"css-loader": "^2.1.1",
"css-minimizer-webpack-plugin": "^3.1.1",
"globby": "^11.0.0",
"lintspaces": "^0.6.4",
"mini-css-extract-plugin": "^2.4.3",
"node-sass": "^6.0.1",
"sass-loader": "^10.1.1",
"url-loader": "^1.1.2",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
}
}