forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.47 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
{
"private": true,
"name": "fullcalendar",
"version": "5.3.2",
"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": "2020 Adam Shaw",
"workspaces": {
"packages": [
"packages/*",
"packages-premium/*",
"packages-contrib/*",
"example-projects/*"
],
"nohoist": [
"**/codelyzer",
"**/karma*",
"**/@vue/cli-service"
]
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"clean": "./scripts/clean.sh",
"lint": "gulp lint",
"lintBuilt": "gulp lintBuilt",
"test": "gulp test",
"test:ci": "gulp testCi",
"archive": "gulp archive",
"ci": "./scripts/ci.sh",
"preversion": "./scripts/update-example-dates.sh && yarn run clean",
"version": "yarn run ci && yarn run archive",
"postversion": "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/jasmine": "^3.3.12",
"@types/jasmine-jquery": "^1.5.33",
"@types/jquery": "^3.3.29",
"@types/luxon": "^1.12.0",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"autoprefixer": "^9.8.4",
"bootstrap": "^3.4.1",
"chokidar": "^2.1.5",
"concurrently": "^4.1.1",
"css-loader": "^3.5.3",
"dragula": "^3.7.2",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-react": "^7.20.0",
"glob": "^7.1.3",
"globby": "^11.0.0",
"gulp": "^4.0.2",
"gulp-cssmin": "^0.2.0",
"gulp-eslint": "^5.0.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",
"html-webpack-plugin": "^4.3.0",
"jasmine-core": "2.5.2",
"karma": "^0.13.22",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-verbose-reporter": "0.0.6",
"luxon": "^1.22.0",
"mini-css-extract-plugin": "^0.9.0",
"mkdirp": "^0.5.1",
"moment-locales-webpack-plugin": "^1.2.0",
"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",
"rollup": "^2.21.0",
"rollup-plugin-dts": "^1.4.9",
"rollup-plugin-postcss": "^3.1.3",
"rollup-plugin-sourcemaps": "^0.6.2",
"semver": "^7.3.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"ts-loader": "^7.0.4",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"yarn": "1.18.0"
}
}