forked from fullcalendar/fullcalendar-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.51 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
{
"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": "bundler install && ./scripts/install-version-deps.sh",
"build": "npm run webpack-build && npm run jekyll-build",
"watch": "concurrently --raw 'npm run webpack-watch' 'npm run jekyll-watch'",
"clean": "npm run webpack-clean && npm run jekyll-clean",
"jekyll-build": "export JEKYLL_ENV=production && bundle exec jekyll build",
"jekyll-watch": "npm run jekyll-clean && bundle exec jekyll serve --watch --incremental",
"jekyll-clean": "bundle exec jekyll clean",
"webpack-build": "webpack --mode production",
"webpack-watch": "webpack --watch",
"webpack-clean": "rm -rf assets/*.*",
"lint": "./scripts/lint.sh"
},
"devDependencies": {
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"glob": "^7.1.3",
"gulp": "^3.9.1",
"gulp-lintspaces": "^0.5.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}