-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "au-freeview-for-channels",
"version": "0.2.0",
"description": "Custom Channel provider for MJH Freeview feeds",
"main": "app.js",
"author": "Gabe PB",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"cheerio": "^1.0.0-rc.12",
"express": "^4.18.2",
"node-fetch": "2.6.7",
"rimraf": "^4.4.0"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/app.js\"",
"test": "cross-env NODE_ENV=test yarn run jest --testTimeout=5000 --verbose"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.2",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}