-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 KB
/
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
{
"name": "ts-template",
"version": "1.0.0",
"description": "A template to start a Node.js project with typescript, eslint, prettier, config & logger support",
"main": "./dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prestart": "npm run build",
"start": "npm run start:prod",
"start:prod": "node -r dotenv/config dist/index",
"start:dev": "tsc-watch --onSuccess \"node -r dotenv/config dist/index.js\"",
"start:debug": "tsc-watch --onSuccess \"node -r dotenv/config --inspect-brk dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmperorRXF/ts-template.git"
},
"author": "Ruwan Fernando",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^13.13.10",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"tsc-watch": "^4.2.8",
"typescript": "^3.9.5"
},
"dependencies": {
"dotenv": "^8.2.0",
"winston": "^3.2.1"
}
}