forked from mgramigna/typescript-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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": "typescript-node-starter",
"version": "0.0.1",
"description": "",
"main": "build/app.js",
"files": [
"build/*"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"check": "npm run test && npm run lint && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgramigna/typescript-node-starter.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mgramigna/typescript-node-starter/issues"
},
"homepage": "https://github.com/mgramigna/typescript-node-starter#readme"
}