aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: 7836d626423cc7d9e584c05a24260e237b1a2c32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "name": "fia",
  "version": "0.0.1",
  "repository": "git@github.com:maksJopek/fia.git",
  "author": "Maks Jopek <maks@jopek.eu>",
  "license": "GPL-3.0",
  "main": "./backend/js/index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start:build-front": "tsc -p ./frontend/tsconfig.json -w",
    "start:build-back": "tsc -p ./backend/tsconfig.json -w",
    "start:start": "nodemon ./backend/js/backend/ts/index.js",
    "start": "concurrently yarn:start:*"
  },
  "dependencies": {
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "express-session": "^1.17.1",
    "node-fetch": "^2.6.1"
  },
  "devDependencies": {
    "@types/concurrently": "^6.0.1",
    "@types/dotenv": "^8.2.0",
    "@types/express": "^4.17.11",
    "@types/express-session": "1.17.0",
    "@types/node-fetch": "^2.5.8",
    "@types/nodemon": "^1.19.0",
    "concurrently": "^6.0.0",
    "nodemon": "^2.0.7",
    "typescript": "^4.2.3"
  },
  "keywords": [],
  "description": ""
}