-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
54
55
56
57
58
{
"name": "@hacksocnotts/typescript-starter",
"version": "1.0.0",
"description": "TypeScript Project Template",
"main": "index.js",
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts",
"lint:staged": "eslint --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"build": "tsc",
"start": "tsc-watch --onSuccess \"node lib/index.js\"",
"test": "jest --watchAll=false --verbose=false",
"test:watch": "jest --watchAll --verbose=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacksocnotts/typescript-starter.git"
},
"keywords": [
"template",
"typescript"
],
"author": "Aaron Osher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hacksocnotts/typescript-starter/issues"
},
"homepage": "https://github.com/hacksocnotts/typescript-starter#readme",
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.22",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^29.1.3",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint:staged"
]
}
}