Skip to content

Commit

Permalink
build: cleanup dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
seo-rii committed Jan 6, 2022
1 parent 961d11c commit a72d94d
Show file tree
Hide file tree
Showing 33 changed files with 14,841 additions and 21,304 deletions.
35,350 changes: 14,549 additions & 20,801 deletions .pnp.cjs

Large diffs are not rendered by default.

432 changes: 212 additions & 220 deletions .pnp.loader.mjs

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/cors-npm-2.8.5-c9935a2d12-ced838404c.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/from-npm-0.1.7-6dcf14a57d-b85125b789.zip
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/ms-npm-2.1.2-ec0c1512ff-673cdb2c31.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/tsc-npm-2.0.3-9a9243ce54-959c022732.zip
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/ws-npm-8.2.3-03a35b8ad7-c869296ccb.zip
Binary file not shown.
26 changes: 12 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,37 @@
"name": "hana",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.1",
"express": "^4.17.2",
"express-ws": "^5.0.2",
"serve-favicon": "^2.5.0",
"socket.io": "^4.4.0",
"uuid": "^8.3.2"
},
"scripts": {
"build": "yarn run build:ts && yarn run build:docker",
"build:ts": "tsc",
"build:ts": "ttsc",
"build:docker": "docker build -t jungol:HANA -- ./",
"run": "yarn node --es-module-specifier-resolution=node dist/index.js",
"run:local": "yarn run build:ts && yarn run run",
"run:docker": "yarn run build && docker run -p 80:80 -it jungol:HANA",
"dev": "tsc-watch --onSuccess \"yarn node --es-module-specifier-resolution=node dist/index.js\"",
"prettier": "prettier --write .",
"release": "standard-version"
},
"dependencies": {
"body-parser": "^1.19.1",
"express": "^4.17.2",
"express-ws": "^5.0.2",
"serve-favicon": "^2.5.0",
"typescript-is": "^0.19.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/serve-favicon": "^2.5.3",
"@types/uuid": "^8.3.3",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.2.2",
"husky": "^7.0.4",
"prettier": "2.5.1",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"tsc": "^2.0.3",
"tsc-watch": "^4.6.0",
"ttypescript": "^1.5.13",
"typescript": "^4.5.4"
},
"packageManager": "yarn@3.1.1"
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"rootDir": "src",
"skipLibCheck": true,
"esModuleInterop": true,
"outDir": "dist"
"outDir": "dist",
"plugins": [
{ "transform": "typescript-is/lib/transform-inline/transformer" }
]
},
"exclude": ["node_modules", "dist"]
}
Loading

0 comments on commit a72d94d

Please sign in to comment.