-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 865 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
{
"name": "learn-typescript",
"version": "1.0.0",
"description": "- TypeScript is the superset of JavaScript created by Microsoft\r - Allows static strict typing\r - Extra features - interfaces, enums, tuples, generics\r - Supports modern features (arrow functions, let, const)\r - Based on the .NET harmony specification",
"main": "index.js",
"scripts": {
"start": "tsc -w && node dist/index.js",
"dev": "nodemon -e ts -w src -x ts-node src/index.ts",
"build": "tsc"
},
"keywords": [
"node",
"ts-node",
"typescript",
"nodemon"
],
"author": "Noyon Rahman",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/noyonalways/learn-typescript"
},
"devDependencies": {
"@types/node": "^20.11.10",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}