
* chore(apps): setup prettier + eslint for all our apps * fix(docs): Fixed the use of implicit any type * chore(apps): Added .eslintignore files
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@astro-reactive/demo",
|
|
"description": "Demo App for Astro Reactive Library",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"author": "Ayo Ayco <ayo@ayco.io> (https://ayco.io)",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"check": "astro check && tsc --noEmit && astro build",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"format": "prettier -w .",
|
|
"lint": "eslint . --ext .ts,.js",
|
|
"lint:fix": "eslint --fix . --ext .ts,.js",
|
|
"clean": "rimraf node_modules .turbo dist"
|
|
},
|
|
"dependencies": {
|
|
"@astro-reactive/form": "*",
|
|
"@astro-reactive/validator": "*",
|
|
"astro": "^1.6.5"
|
|
},
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/astro-reactive/astro-reactive.git"
|
|
},
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/astro-reactive/astro-reactive/issues"
|
|
},
|
|
"homepage": "https://github.com/astro-reactive/astro-reactive#readme",
|
|
"devDependencies": {
|
|
"@astro-reactive/eslint-config-custom": "*",
|
|
"@astro-reactive/tsconfig": "*",
|
|
"@types/eslint": "^8.4.10",
|
|
"@types/prettier": "^2.7.2",
|
|
"eslint": "^8.31.0",
|
|
"prettier": "^2.8.3",
|
|
"prettier-plugin-astro": "^0.7.2",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|