forked from Eltik/AniSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.8 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
{
"devDependencies": {
"@types/node": "^18.16.2",
"prisma": "^4.13.0",
"prisma-json-types-generator": "^2.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"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": {
"test": "node test.js",
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"crawl": "ts-node -r tsconfig-paths/register src/crawl.ts",
"start": "node ./dist/index.js",
"build": "npm run build:db && npm run build:ts",
"build:ts": "tsc --build",
"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": "tsc --build --clean",
"export": "ts-node -r tsconfig-paths/register src/helper/export.ts",
"import": "ts-node -r tsconfig-paths/register src/helper/import.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eltik/Anify.git"
},
"author": "eltik",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eltik/Anify/issues"
},
"homepage": "https://github.com/Eltik/Anify#readme",
"dependencies": {
"@prisma/client": "^4.13.0",
"axios": "^0.27.2",
"cfbypass": "^0.0.12",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"eventemitter2": "^6.4.9",
"fastify": "^4.17.0",
"ioredis": "^5.3.2",
"prisma-redis-middleware": "^4.6.1",
"threads": "^1.7.0"
}
}