summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Zelawski <pawel.zelawski@outlook.com>2025-04-10 10:41:54 +0200
committerPawel Zelawski <pawel.zelawski@outlook.com>2025-04-10 10:41:54 +0200
commitb290aec2899208169b5f90c9e2b66ebffd565a87 (patch)
treefdcd1225cc1c8683003bd5925a4eba9520527298
parentcc50a0270d822b633c5d8ec6ed707651b0051917 (diff)
feat: initialize project and add core dependencies
- Initialized npm project with `npm init -y`. - Added core dependencies: react, react-dom, express, dotenv, qrcode.
-rw-r--r--package.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..ca86823
--- /dev/null
+++ b/package.json
@@ -0,0 +1,20 @@
+{
+ "name": "digiid-ts-demo",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/pawelzelawski/digiid-ts-demo.git"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/pawelzelawski/digiid-ts-demo/issues"
+ },
+ "homepage": "https://github.com/pawelzelawski/digiid-ts-demo#readme"
+}