diff --git a/.gitignore b/.gitignore index 485dee6..7a1537b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .idea +node_modules diff --git a/api/package-lock.json b/api/package-lock.json new file mode 100644 index 0000000..3574598 --- /dev/null +++ b/api/package-lock.json @@ -0,0 +1,14 @@ +{ + "name": "api", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "typescript": { + "version": "3.9.7", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", + "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "dev": true + } + } +} diff --git a/api/package.json b/api/package.json new file mode 100644 index 0000000..1e9afff --- /dev/null +++ b/api/package.json @@ -0,0 +1,15 @@ +{ + "name": "@taros-minesweeper/api", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "typescript": "3.9.7" + } +} diff --git a/lib/.gitignore b/lib/.gitignore index f06235c..1521c8b 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -1,2 +1 @@ -node_modules dist