-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 968 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
38
39
{
"name": "typescript-node",
"version": "1.0.0",
"description": "Typescript Node Project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts"
},
"keywords": [
"node",
"typescript"
],
"author": "Austen Stone",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/austenstone/typescript-node.git"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"ts-jest": "^29.1.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
}
}