-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "typescript-kickstart",
"version": "0.0.1",
"description": "A Kickstarter Repository for Typescript",
"main": "dist/",
"repository": "https://github.com/Alex4386/typescript-kickstart",
"author": "Alex4386 <psh010209@gmail.com>",
"license": "WTFPL",
"dependencies": {
"chalk": "^4.1.1",
"typescript": "^4.0.5",
"winston": "^3.5.1",
"winston-daily-rotate-file": "^4.5.4"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"ts-node": "^9.0.0"
},
"scripts": {
"debug": "ts-node ./src/",
"build": "tsc",
"start": "tsc && node ./dist/",
"lint": "eslint \"*/**/*.{js,ts,tsx}\" --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}