This commit is contained in:
sneakers-the-rat 2023-08-04 19:16:56 -07:00
parent c138fc68d0
commit c87582c030
3 changed files with 6 additions and 5 deletions

View file

@ -2,6 +2,9 @@
"name": "@chatbridge/client", "name": "@chatbridge/client",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"repository": "https://git.jon-e.net/jonny/chatbridge",
"author": "sneakers-the-rat <j@nny.fyi>",
"license": "AGPL-3.0",
"dependencies": { "dependencies": {
"@emotion/react": "^11.11.1", "@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0", "@emotion/styled": "^11.11.0",

View file

@ -3,16 +3,14 @@
"version": "1.0.0", "version": "1.0.0",
"description": "bridging a bunch of chats together", "description": "bridging a bunch of chats together",
"main": "index.js", "main": "index.js",
"repository": "https://git.jon-e.net/jonny/ucla-chat", "repository": "https://git.jon-e.net/jonny/chatbridge",
"author": "sneakers-the-rat <JLSaunders987@gmail.com>", "author": "sneakers-the-rat <j@nny.fyi>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"private": true, "private": true,
"scripts": { "scripts": {
"start": "NODE_ENV=development ts-node-dev --respawn --transpile-only --exit-child src/app.ts", "start": "NODE_ENV=development ts-node-dev --respawn --transpile-only --exit-child src/app.ts",
"build": "../node_modules/.bin/tsc -p .", "build": "../node_modules/.bin/tsc -p .",
"typeorm": "../node_modules/.bin/typeorm-ts-node-commonjs", "typeorm": "../node_modules/.bin/typeorm-ts-node-commonjs",
"migrate": "rm -rf build && yarn build && yarn ../node_modules/.bin/typeorm migration:generate ./src/migrations/added-user-entity -d ./src/utils/data-source.ts",
"db:push": "rm -rf build && yarn build && yarn ../node_modules/.bin/typeorm migration:run -d src/utils/data-source.ts",
"importData": "npx ts-node-dev --transpile-only --exit-child src/data/seeder.ts", "importData": "npx ts-node-dev --transpile-only --exit-child src/data/seeder.ts",
"test": "jest" "test": "jest"
}, },

View file

@ -10,7 +10,7 @@
"strictPropertyInitialization": false, "strictPropertyInitialization": false,
"strictNullChecks": false, "strictNullChecks": false,
"skipLibCheck": true, "skipLibCheck": true,
"outDir": "./build", "outDir": "./dist",
"rootDir": ".", "rootDir": ".",
}, },