-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 988 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
{
"name": "typescript-playground",
"version": "1.0.0",
"description": "Opinionated quasi-REPL.",
"main": "index.js",
"repository": "[email protected]:RyanNieuwoudt/TypeScript-Playground.git",
"author": "Ryan Nieuwoudt <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-functional": "^8.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"scripts": {
"lint:fix": "eslint --max-warnings 0 '**/*.{ts,js}' --fix",
"run": "app/main.ts",
"watch": "ts-node-dev --respawn -r tsconfig-paths/register -- app/main.ts"
},
"packageManager": "[email protected]"
}