-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.43 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "husky install",
"test": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit",
"lint": "eslint **/*.ts",
"start": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"test/**/*.spec.ts\" --exec \"ts-node src/index.ts\""
},
"eslintIgnore": [
"webpack.config.js"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint/eslint-plugin",
"jest"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/ban-ts-comment": 0,
"jest/expect-expect": 0
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "template",
"bugs": {
"url": "https://github.com/hexlabsio/typescript-template/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm outdated"
}
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"reporters": [
"default",
"jest-junit"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"homepage": "",
"devDependencies": {
"@hexlabs/http-api-ts": "^1.1.29",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^27.0.3",
"jest-junit": "^10.0.0",
"json-loader": "^0.5.7",
"node-loader": "^0.6.0",
"nodemon": "^2.0.9",
"ts-jest": "^27.0.2",
"ts-loader": "^6.2.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"docker-names": "^1.1.1",
"express": "^4.17.1",
"uuid": "^8.3.2"
}
}