Socialify

Folder ..

Viewing package.json
43 lines (43 loc) • 1.1 KB

 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
39
40
41
42
43
{
  "name": "metachan-api",
  "version": "1.0.0",
  "description": "A Cohesive Anime Metadata API",
  "homepage": "https://github.com/luciferreeves/metachan-api#readme",
  "bugs": {
    "url": "https://github.com/luciferreeves/metachan-api/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/luciferreeves/metachan-api.git"
  },
  "license": "MIT",
  "author": "Bobby <[email protected]>",
  "type": "commonjs",
  "main": "dist/app.js",
  "scripts": {
    "start": "node dist/app.js",
    "dev": "nodemon -e ts --exec \"ts-node -T\" src/app.ts",
    "build": "tsc",
    "lint": "eslint . --fix",
    "format": "prettier --write \"src/**/*.ts\""
  },
  "devDependencies": {
    "@types/express": "^5.0.0",
    "@types/node": "^22.10.7",
    "@typescript-eslint/eslint-plugin": "^8.20.0",
    "@typescript-eslint/parser": "^8.20.0",
    "eslint": "^9.18.0",
    "nodemon": "^3.1.9",
    "prettier": "^3.4.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.3"
  },
  "dependencies": {
    "axios": "^1.7.9",
    "chalk": "^5.4.1",
    "express": "^4.21.2",
    "reflect-metadata": "^0.2.2",
    "sqlite3": "^5.1.7",
    "typeorm": "^0.3.20"
  }
}