summaryrefslogtreecommitdiffstats
path: root/package.json
blob: c2bab168f2c7ffd36ae1e8e4e43634e97c6019d7 (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
35
36
37
38
{
  "name": "sirc",
  "version": "0.0.1",
  "description": "Basic ts implementation of IRC",
  "main": "index.ts",
  "scripts": {
    "serve": "webpack serve --mode development",
    "start": "nodemon ./backend/index.ts",
    "build": "webpack --mode production"
  },
  "repository": "git@git.jopek.eu:maks/IRC.git",
  "author": "Maks Jopek <maks@jopek.eu>",
  "license": "AGPL-3.0-or-later",
  "private": false,
  "devDependencies": {
    "@types/cors": "^2.8.10",
    "@types/jquery": "^3.5.5",
    "@types/node": "^15.0.3",
    "@types/webpack": "^5.28.0",
    "@types/webpack-dev-server": "^3.11.4",
    "cors": "^2.8.5",
    "css-loader": "^5.2.4",
    "html-webpack-plugin": "^5.3.1",
    "nodemon": "^2.0.7",
    "source-map-loader": "^2.0.1",
    "ts-loader": "^9.1.2",
    "ts-node": "^9.1.1",
    "tsconfig-paths-webpack-plugin": "^3.5.1",
    "typescript": "^4.2.4",
    "webpack": "^5.37.0",
    "webpack-cli": "^4.7.0",
    "webpack-dev-server": "^3.11.2"
  },
  "dependencies": {
    "express": "^4.17.1",
    "express-longpoll": "^0.0.6"
  }
}