This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 2.59 KB
/
package.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"prettier": "2.8.8",
"prisma": "^4.13.0",
"prisma-json-types-generator": "^2.3.1",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"name": "anisync",
"description": "Mapping sites to AniList and back.",
"version": "1.0.0",
"source": "src/index.ts",
"scripts": {
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"test": "jest --silent",
"crawl": "ts-node -r tsconfig-paths/register src/crawl.ts",
"start": "node dist/index.js",
"start:pm2": "pm2 start \"npm run dev\" --name anify-backend",
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.css dist/",
"build": "npm run build:db && npm run build:ts && npm run lint",
"rebuild": "npm run clean && npm run build:ts",
"build:ts": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist && npm run copy-files",
"build:db": "npm run db:generate && npm run db:push && npm run db:validate",
"db:generate": "npx prisma generate",
"db:push": "npx prisma db push",
"db:validate": "npx prisma validate",
"clean": "rimraf dist/",
"export": "ts-node -r tsconfig-paths/register src/helper/export.ts",
"import": "ts-node -r tsconfig-paths/register src/helper/import.ts",
"eslint": "eslint --ext .ts src/** --fix",
"prettier": "prettier --write .",
"lint": "npm run eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eltik/AniSync.git"
},
"author": "eltik",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eltik/AniSync/issues"
},
"homepage": "https://github.com/Eltik/AniSync#readme",
"dependencies": {
"@prisma/client": "^4.13.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12",
"cloudscraper-ts": "^1.0.4",
"colors": "^1.4.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"eventemitter2": "^6.4.9",
"express": "^4.18.2",
"express-domain-middleware": "^0.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"ioredis": "^5.3.2",
"prisma-redis-middleware": "^4.6.1"
}
}