-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 866 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
{
"name": "tsx-watch-issue-repro",
"private": "true",
"type": "module",
"scripts": {
"expect": "echo \"Expecting tsx watch to run ./src/using-%npm_config_module%.ts...\"",
"tsx": "tsx ./src/using-%npm_config_module%.ts",
"tsxWatch": "tsx watch ./src/using-%npm_config_module%.ts",
"tsxWatchHack": "tsx watch ./src/using-%npm_config_module%.ts < NUL",
"watch-with-concurrently": "concurrently \"npm run expect\" \"npm run tsxWatch\"",
"concurrently-without-watch": "concurrently \"npm run expect\" \"npm run tsx\"",
"watch-with-concurrently-hack": "concurrently \"npm run expect\" \"npm run tsxWatchHack\""
},
"devDependencies": {
"concurrently": "^8.2.2",
"tsx": "^4.16.2"
},
"dependencies": {
"chalk": "^5.3.0",
"googleapis": "^140.0.1",
"prom-client": "^14.2.0",
"swagger-stats": "^0.99.7"
}
}