-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 981 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
{
"name": "rsc",
"version": "0.1.0",
"description": "",
"bin": "bin/rsc",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"dev": "tsc --build --watch",
"clean": "tsc --build --clean",
"rsc": "ts-node -r tsconfig-paths/register ./src/main.ts",
"format": "yarn lint --fix && prettier --write .",
"lint": "eslint --ext .js,.ts src"
},
"devDependencies": {
"@types/node": "^18.15.13",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@notionhq/client": "^2.2.4",
"dotenv": "^16.0.3",
"semver": "^7.5.0",
"winston": "^3.8.2",
"yargs": "^17.7.1"
}
}