-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 940 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "lyrics-worker",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"check": "yarn lint && yarn prettier -c",
"lint": "eslint .",
"prettier": "prettier .",
"dev": "node --loader ts-node/esm ./src/index.ts",
"build": "tsc"
},
"dependencies": {
"@supabase/supabase-js": "^2.0.4",
"axios": "^1.1.3",
"moment": "^2.29.4",
"puppeteer": "^19.2.0",
"twitter-api-v2": "^1.12.9"
},
"devDependencies": {
"@iamtakagi/eslint-config": "^1.0.0",
"@iamtakagi/prettier-config": "^1.0.0",
"@types/node": "^18.11.7",
"eslint": "^8.26.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": "16.x"
},
"prettier": "@iamtakagi/prettier-config",
"eslintConfig": {
"extends": [
"@iamtakagi"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
}
}
}