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>
35 lines
887 B
JSON
35 lines
887 B
JSON
{
|
|
"name": "blog-cms",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"description": "The blog backend",
|
|
"scripts": {
|
|
"develop": "strapi develop",
|
|
"start": "strapi start",
|
|
"build": "strapi build",
|
|
"strapi": "strapi",
|
|
"docker:build": "docker build --tag cms .",
|
|
"docker:run": "docker run --rm --publish 1337:1337 --env-file ../../.env.docker cms"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash.set": "^4.3.7"
|
|
},
|
|
"dependencies": {
|
|
"@strapi/plugin-graphql": "^4.9.1",
|
|
"@strapi/plugin-i18n": "^4.5.6",
|
|
"@strapi/plugin-users-permissions": "^4.5.6",
|
|
"@strapi/strapi": "^4.5.6",
|
|
"lodash.set": "^4.3.2",
|
|
"pg": "^8.8.0",
|
|
"strapi-provider-upload-azure-storage": "^2.1.0"
|
|
},
|
|
"strapi": {
|
|
"uuid": "42db7187-d121-4240-b174-3b2b3605f696"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.19.1 <=18.x.x",
|
|
"npm": ">=6.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|