-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 966 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 966 Bytes
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
41
42
{
"name": "typescript-node",
"version": "1.0.0",
"description": "Typescript Node Project",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"start": "node dist/index.js",
"dev": "tsx watch 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/css": "^0.9.0",
"@eslint/js": "^9.30.1",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.6.0",
"@types/node": "^24.0.10",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.4"
},
"dependencies": {
"dotenv": "^17.0.1"
}
}