This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.42 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "animesync",
"author": "Deathspike",
"description": "AnimeSync is capable of downloading anime episodes from popular streaming services.",
"license": "MIT",
"repository": "git://github.com/Deathspike/animesync",
"version": "2.2.0",
"main": "dist/shell",
"types": "dist/shell",
"keywords": [
"animesync",
"anime",
"download",
"crunchyroll"
],
"bin": {
"animesync": "./bin/animesync"
},
"engines": {
"npm": ">= 7.0.0",
"node": ">= 16.0.0"
},
"jest": {
"globalTeardown": "<rootDir>/dist/test/global/teardown.js",
"maxWorkers": 1,
"testMatch": ["<rootDir>/dist/test/*.test.js"],
"testTimeout": 300000
},
"dependencies": {
"@nestjs/common": "8.0.6",
"@nestjs/core": "8.0.6",
"@nestjs/platform-express": "8.0.6",
"@nestjs/serve-static": "2.2.2",
"@nestjs/swagger": "5.0.9",
"abort-controller": "3.0.0",
"chrome-launcher": "0.13.4",
"class-transformer": "0.4.0",
"class-validator": "0.13.1",
"commander": "6.2.1",
"cors": "2.8.5",
"express": "4.17.1",
"jszip": "3.7.1",
"node-fetch": "3.0.0-beta.9",
"playwright-core": "1.14.1",
"sanitize-filename": "1.6.3",
"socks": "2.5.1",
"swagger-ui-express": "4.1.6",
"which": "2.0.2",
"xml2js": "0.4.23"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.9",
"@types/jest": "27.0.1",
"@types/which": "2.0.1",
"@types/xml2js": "0.4.8",
"jest": "27.0.6",
"rimraf": "3.0.2",
"typescript": "4.3.5",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@types/react-router-dom": "5.1.8",
"mobx": "6.3.3",
"mobx-react": "7.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.2.1",
"source-map-loader": "3.0.0",
"terser-webpack-plugin": "5.2.3",
"webpack": "5.51.1",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.0.0"
},
"scripts": {
"ci:crunchyroll": "jest crunchyroll.test.js",
"ci:crunchyrollBeta": "jest crunchyrollBeta.test.js",
"prepare": "npm run repository:prune && npm run repository:build && npm run webpack:build",
"postinstall": "node postinstall",
"repository:build": "tsc",
"repository:prune": "rimraf dist && rimraf public/app.min.js",
"webpack:build": "webpack build --config webpack.production.js",
"webpack:serve": "webpack serve --config webpack.development.js",
"test": "jest"
}
}