-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "node-boilerplate",
"version": "0.0.1",
"description": "Node Boilerplate",
"keywords": [
"node",
"typescript",
"boilerplate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/0xGorilla/node-boilerplate.git"
},
"license": "MIT",
"author": "0xGorilla",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/main.ts",
"build": "tsc -p tsconfig.json",
"prod": "node dist/tsc/src/main.js",
"test": "tsc && TEST_MODE=true jest --verbose",
"test:coverage": "yarn test --collectCoverage",
"docs": "typedoc --entryPoints src/main.ts",
"lint": "eslint . --ext .ts --cache --fix",
"prepare": "husky install"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "2.0.4",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.0.2",
"@types/jest-when": "2.7.3",
"@types/node": "15.0.1",
"@types/yargs": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"esbuild": "0.11.11",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": ">=6",
"jest": "27.0.2",
"jest-when": "3.4.1",
"lint-staged": ">=10",
"prettier": "2.4.1",
"ts-jest": "27.0.2",
"ts-node": "9.1.1",
"typedoc": "0.20.35",
"typescript": "4.2.3"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"dependencies": {
"fs-extra": "10.0.0",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.5",
"yargs": "17.2.1",
"yup": "^0.32.11"
}
}