-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "typescript-template",
"version": "0.0.1",
"description": "This is a template for creating Typescript projects",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"start": "npm run dev",
"dev": "nodemon --config nodemon.json src/index.ts",
"prebuild": "npm run check",
"build": "tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"check": "npm run lint && npm run prettier",
"check:fix": "npm run lint:fix && npm run prettier:fix",
"prod": "set NODE_ENV=prod && node ./dist/index.js"
},
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^15.6.1",
"@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.0.0",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/totigm/typescript-template.git"
},
"keywords": [
"typescript",
"template"
],
"author": "Toti Muñoz",
"license": "MIT",
"bugs": {
"url": "https://github.com/totigm/typescript-template/issues"
},
"homepage": "https://github.com/totigm/typescript-template#readme"
}