← back to Boomer Calculator
package.json
31 lines
{
"name": "nofrillscalculator",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:math": "tsc lib/calculations.ts --outDir tmp/math-tests --module commonjs --target es2020 --skipLibCheck && node --test tests/calculations.cjs"
},
"dependencies": {
"@capacitor-community/admob": "^7.2.0",
"@capacitor/cli": "^7.4.3",
"@capacitor/core": "^7.4.3",
"@capacitor/ios": "^7.4.3",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3"
}
}