-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
32 lines (32 loc) · 1 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
{
"private": true,
"engines": {
"node": ">= 14",
"yarn": ">= 1.22"
},
"devDependencies": {
"@types/bootstrap": "5.2.2",
"@types/node": "^18.11.18",
"@types/rstudio-shiny": "https://github.com/rstudio/shiny#main",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"esbuild": "^0.16.14",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"lit": "^2.7.5",
"prettier": "^2.8.2",
"readcontrol": "^1.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"watch": "yarn run build --watch",
"build": "yarn run checks && yarn run build_bslib",
"build_bslib": "ts-node srcts/build/index.ts",
"checks": "yarn run check_types && yarn run check_lint",
"check_lint": "node --eval \"console.log('linting code...')\" && eslint --fix --ext .ts srcts/src",
"check_types": "tsc --noEmit -p tsconfig.json"
}
}