reservations_display/package.json
Adam Goldsmith d4dbaaf344 Drop dependency on Vue and use Webpack instead of Vite
Couldn't get Vue/Vite to transpile for ios 8 correctly, and I don't
really need it anyway...
2021-11-15 19:37:40 -05:00

35 lines
847 B
JSON

{
"browserslist": [
"defaults",
"ios 8.4"
],
"scripts": {
"start": "npm run serve",
"build": "webpack build",
"serve": "webpack serve"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/intl": "^1.2.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.2.3",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@fullcalendar/core": "^5.10.0",
"@fullcalendar/icalendar": "^5.10.1",
"@fullcalendar/timegrid": "^5.6.0",
"core-js": "^3.19.1",
"ical.js": "github:ekreative/ical.js#var-ical",
"intl": "^1.2.5",
"unique-colors": "^1.0.1"
}
}