aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorMaks Jopek <maksymilian.jopek@prym-soft.pl>2021-03-21 00:29:57 +0100
committerMaks Jopek <maksymilian.jopek@prym-soft.pl>2021-03-21 00:29:57 +0100
commiteee4ee32dd667ed6efd31ddcf8f64217b7e16b60 (patch)
tree98af67398c5152d704547467922e9b51683b4d25 /package.json
parenta03d9891a0bca30fe3384844c21f483f5fd1e440 (diff)
downloadfia-eee4ee32dd667ed6efd31ddcf8f64217b7e16b60.tar.gz
fia-eee4ee32dd667ed6efd31ddcf8f64217b7e16b60.tar.zst
fia-eee4ee32dd667ed6efd31ddcf8f64217b7e16b60.zip
Start files, and some basic tests
Diffstat (limited to 'package.json')
-rw-r--r--package.json30
1 files changed, 30 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..82eb636
--- /dev/null
+++ b/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "fia",
+ "version": "0.0.1",
+ "repository": "git@github.com:maksJopek/fia.git",
+ "author": "Maks Jopek <maks@jopek.eu>",
+ "license": "GPL-3.0",
+ "main": "./src/backend/js/index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "start:build-front": "tsc -p ./src/frontend/tsconfig.json --watch",
+ "start:build-back": "tsc -p ./src/backend/tsconfig.json --watch",
+ "start:run": "nodemon ./src/backend/js/index.js",
+ "start": "concurrently \"yarn:start:*\""
+ },
+ "dependencies": {
+ "dotenv": "^8.2.0",
+ "express": "^4.17.1",
+ "node-fetch": "^2.6.1"
+ },
+ "devDependencies": {
+ "@types/concurrently": "^6.0.1",
+ "@types/dotenv": "^8.2.0",
+ "@types/express": "^4.17.11",
+ "@types/node-fetch": "^2.5.8",
+ "@types/nodemon": "^1.19.0",
+ "concurrently": "^6.0.0",
+ "nodemon": "^2.0.7",
+ "typescript": "^4.2.3"
+ }
+}