-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 946 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
{
"name": "myanimelist-history",
"version": "1.1.0",
"description": "",
"type": "module",
"scripts": {
"start": "ts-node ./src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"lint": "eslint .",
"fix": "eslint . --fix",
"prettier": "prettier --config .prettierrc --write ."
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"dotenv": "^16.0.1",
"fs-extra": "^10.1.0",
"markdown-table": "^3.0.2",
"node-myanimelist": "^4.0.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"concurrently": "^7.2.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}