built-to-spell/package.json

46 lines
1.4 KiB
JSON
Raw Normal View History

2021-01-04 22:20:46 -05:00
{
"name": "built-to-spell",
"version": "0.0.1",
"description": "NYT Spelling Bee simulator",
"scripts": {
"lint": "eslint src",
"build": "parcel build --no-cache --dist-dir=public src/index.html",
2022-12-29 16:44:45 -08:00
"start": "rm -r .cache ; parcel serve --dist-dir public src/index.html"
2021-01-04 22:20:46 -05:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/brentschroeter/built-to-spell.git"
},
"author": "Brent Schroeter <brent@brentschroeter.com>",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/brentschroeter/built-to-spell/issues"
},
"homepage": "https://gitlab.com/brentschroeter/built-to-spell#readme",
"dependencies": {
2022-12-29 16:44:45 -08:00
"react": "^18.2.0",
"react-dom": "^18.2.0"
2021-01-04 22:20:46 -05:00
},
"devDependencies": {
2022-12-29 16:44:45 -08:00
"@babel/core": "^7.20.7",
"@parcel/packager-raw-url": "^2.8.2",
"@parcel/transformer-typescript-tsc": "^2.8.2",
"@parcel/transformer-webmanifest": "^2.8.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^17.0.14",
2022-12-29 16:44:45 -08:00
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint_d": "^11.1.1",
2022-12-29 16:44:45 -08:00
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.8.2",
"process": "^0.11.10",
"typescript": "^4.6.3"
2021-01-04 22:20:46 -05:00
}
}