Update dependencies.
This commit is contained in:
parent
07fde82912
commit
7ebe53f0a4
4 changed files with 8286 additions and 1529 deletions
|
@ -1,6 +1,3 @@
|
|||
{
|
||||
"extends": "@parcel/config-default",
|
||||
"transformers": {
|
||||
"*.{ts,tsx}": ["@parcel/transformer-typescript-tsc"]
|
||||
}
|
||||
}
|
||||
|
|
9712
package-lock.json
generated
9712
package-lock.json
generated
File diff suppressed because it is too large
Load diff
37
package.json
37
package.json
|
@ -5,7 +5,7 @@
|
|||
"scripts": {
|
||||
"lint": "eslint src",
|
||||
"build": "parcel build --no-cache --dist-dir=public src/index.html",
|
||||
"start": "rm -r .cache ; parcel -d public src/index.html"
|
||||
"start": "rm -r .cache ; parcel serve --dist-dir public src/index.html"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -18,27 +18,28 @@
|
|||
},
|
||||
"homepage": "https://gitlab.com/brentschroeter/built-to-spell#readme",
|
||||
"dependencies": {
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2"
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.17.8",
|
||||
"@parcel/packager-raw-url": "^2.4.0",
|
||||
"@parcel/transformer-typescript-tsc": "^2.4.0",
|
||||
"@parcel/transformer-webmanifest": "^2.4.0",
|
||||
"@types/node": "^17.0.23",
|
||||
"@types/react": "^17.0.43",
|
||||
"@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",
|
||||
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
||||
"@typescript-eslint/parser": "^5.16.0",
|
||||
"eslint": "^8.12.0",
|
||||
"eslint-config-airbnb": "^19.0.4",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"eslint-plugin-jsx-a11y": "^6.5.1",
|
||||
"eslint-plugin-react": "^7.29.4",
|
||||
"eslint-plugin-react-hooks": "^4.3.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.47.1",
|
||||
"@typescript-eslint/parser": "^5.47.1",
|
||||
"eslint": "^8.30.0",
|
||||
"eslint_d": "^11.1.1",
|
||||
"parcel": "^2.4.0",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
name = "built-to-spell"
|
||||
type = "javascript"
|
||||
main = "./dist/worker.js"
|
||||
route = 'bts.brentsch.com/*'
|
||||
account_id = '7c81d50e4fc6ec51eecd802aacd6304b'
|
||||
zone_id = '23121cb221cde0d0fbcb10798c01f8ba'
|
||||
usage_model = ''
|
||||
usage_model = 'bundled'
|
||||
compatibility_flags = []
|
||||
workers_dev = false
|
||||
compatibility_date = "2022-03-27"
|
||||
|
@ -14,13 +13,9 @@ crons = ["0 * * * *"]
|
|||
[build]
|
||||
command = "npm --prefix=../ run build && npm run build"
|
||||
|
||||
[build.upload]
|
||||
format = "service-worker"
|
||||
|
||||
[[kv_namespaces]]
|
||||
binding = "NYT_GAME_DATA"
|
||||
id = "ad58b382cc884b889f42ed94cf4dbb6b"
|
||||
|
||||
[site]
|
||||
bucket = "../public"
|
||||
entry-point = "./"
|
||||
|
|
Loading…
Add table
Reference in a new issue