mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* work so far * stuff * a * basics work * stuff * yoo * build lockfile * correct * f * a * install fixture havent tested * i made it worse * lol * be more reasonable * make the test easier to pass because bun install doesn't handle obscure lockfile edge cases :/ * a * works now * ok * a * a * cool * nah * fix stuff * l * a * idfk * LAME * prettier errors * does this fix tests? * Add more safety checks to Integrity * Add another check * More careful lifetime handling * Fix linux debugger issue * a * tmp dir and snapshot test --------- Co-authored-by: Jarred SUmner <jarred@jarredsumner.com>
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "blog",
|
|
"version": "1.0.2",
|
|
"private": true,
|
|
"scripts": {
|
|
"develop": "next dev",
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"deploy": "next build && next export",
|
|
"lint": "next lint",
|
|
"lint:fix": "next lint --fix",
|
|
"docker:build": "docker build --tag blog .",
|
|
"docker:run": "docker run --rm --publish 3000:3000 --env-file ../../.env.docker blog"
|
|
},
|
|
"dependencies": {
|
|
"next": "^13.3.0",
|
|
"qs": "^6.10.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-markdown": "^8.0.4",
|
|
"rehype-raw": "^6.1.1",
|
|
"rehype-sanitize": "^5.0.1",
|
|
"uikit": "^3.16.14"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.18",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
"eslint": "^8.31.0",
|
|
"eslint-config-next": "^13.3.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.8.2",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|