-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.28 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.28 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
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
86
87
88
{
"name": "api-server",
"version": "1.0.0",
"description": "Public API Server",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"start:dev": "nodemon dist/server.js",
"build": "tsc && tsc-alias",
"build:dev": "tsc --watch",
"build:dev:alias": "tsc-alias -p tsconfig.json --watch",
"test": "jest",
"swagger:gen": "node ./docs/swagger.js",
"heroku-postbuild": "npm audit fix && npm run build && npm run swagger:gen",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"prepare": "husky install"
},
"keywords": [
"server",
"api",
"rest api",
"express",
"typescript"
],
"author": "Zukron Alviandy",
"license": "MIT",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"akaneko": "^5.2.1",
"axios": "^0.21.4",
"camaro": "^6.0.4",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"fluent-ffmpeg": "^2.1.2",
"fs": "0.0.1-security",
"google-translate-api": "^2.3.0",
"got": "^11.8.2",
"moment": "^2.29.1",
"puppeteer": "^5.5.0",
"querystring": "^0.2.0",
"saweria": "^1.2.4",
"swagger-autogen": "^2.11.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/ffmpeg-installer__ffmpeg": "^1.0.0",
"@types/fluent-ffmpeg": "^2.1.18",
"@types/google-translate-api": "^2.3.2",
"@types/jest": "^27.0.0",
"@types/puppeteer": "^5.4.4",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.4",
"ts-jest": "^27.0.4",
"tsc-alias": "^1.3.8",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix"
]
},
"nodemonConfig": {
"ignore": [
"./docs/",
"./lib/",
"./storages/",
"README"
]
}
}