-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 785 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 785 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
{
"name": "nodejs-typescript",
"version": "1.0.0",
"main": "src/main.ts",
"description": "Nodejs Typescript Biolerplate",
"repository": "https://github.com/m-inan/nodejs-typescript",
"author": "minan <muhammet@tilpark.com>",
"license": "MIT",
"scripts": {
"start": "NODE_PATH=dist node dist/main.js",
"watch": "nodemon --watch",
"lint": "eslint . --ext .ts",
"build": "rm -rf dist; tsc"
},
"devDependencies": {
"@types/node": "^14.11.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0"
}
}