-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 875 Bytes
/
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
{
"name": "lidarr-deemix",
"type": "module",
"scripts": {
"start": "tsc && ts-node --project tsconfig.tsnode.json dist/index",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"dev:override": "OVERRIDE_MB=true tsc-watch --onSuccess \"node ./dist/index.js\"",
"dev:prio": "PRIO_DEEMIX=true tsc-watch --onSuccess \" node ./dist/index.js\""
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/latinize": "^0.2.18",
"@types/node": "^20.12.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/lodash": "^4.17.0",
"@types/node-fetch": "^2.6.11",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"latinize": "^2.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"ts-node": "11.0.0-beta.1",
"tsc-watch": "^6.2.0"
}
}