-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "lk21-api",
"version": "1.0.0",
"description": "Unofficial LK21 API",
"main": "dist/index.js",
"private": true,
"_moduleAliases": {
"@": "dist"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"serve": "concurrently \"npm run watch\" \"nodemon dist/index.js\"",
"start": "node dist/index.js",
"prepare": "husky install",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/febriadj/lk21-api.git"
},
"keywords": [
"lk21-api",
"movies-streaming",
"web-scraping"
],
"author": "Febriadji",
"license": "MIT",
"bugs": {
"url": "https://github.com/febriadj/lk21-api/issues"
},
"homepage": "https://github.com/febriadj/lk21-api#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/cheerio": "^0.22.31",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"module-alias": "^2.2.3",
"morgan": "^1.10.0"
}
}