Initialize npm & add typescript to dependencies

This commit is contained in:
Stefan-5422
2022-02-23 11:50:07 +01:00
parent 5614c414b6
commit c9455c2ab8
2 changed files with 35 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"name": "server",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"typescript": {
"version": "4.5.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz",
"integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA=="
}
}
}
+22
View File
@@ -0,0 +1,22 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GithubOrgProjectPiza/server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GithubOrgProjectPiza/server/issues"
},
"homepage": "https://github.com/GithubOrgProjectPiza/server#readme",
"dependencies": {
"typescript": "^4.5.5"
}
}