-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
33
34
35
36
37
38
39
40
{
"name": "run-ts",
"private": true,
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "A tiny template that let's you run Typescript files locally in a nice environment",
"scripts": {
"dev": "tsx src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/esm": "^1.0.2",
"@tsconfig/node18": "^1.0.1",
"@tsconfig/strictest": "^2.0.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.7",
"tsx": "^3.12.6",
"typescript": "^5.0.3"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/richard-better/run-ts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/richard-better/run-ts/issues"
},
"homepage": "https://github.com/richard-better/run-ts#readme"
}