-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 831 Bytes
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
{
"name": "4net-scrapper",
"version": "1.0.0",
"description": "EPG and M3U8 scrapper for 4net services",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"develop": "onchange -i -k \"{src,server,public,scripts}/**/*.{ts,tsx,js,jsx,html,css}\" -- npm run start",
"prettier-watch": "onchange \"{src,server,public,scripts}/**/*.{ts,tsx,js,jsx,html,css}\" -- prettier --config .prettierrc --write \"{{changed}}\""
},
"author": "Jonáš Rosecký",
"license": "MIT",
"dependencies": {
"@types/node": "^14.10.1",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"waitasecond": "^1.6.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"onchange": "^7.0.2",
"prettier": "^2.1.1"
}
}