- Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
25 lines (25 loc) · 618 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 618 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
{
"name": "typescript",
"version": "1.0.0",
"description": "",
"scripts": {
"dev:ts": "nodemon src/index.ts",
"dev:js": "nodemon src/index.js",
"lint": "eslint ./src --fix"
},
"author": "",
"type": "module",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}