-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.63 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
{
"version": "0.1.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint '{src,test}/**/*.ts' --fix"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"sort-imports-es6-autofix"
],
"extends": [
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"sort-imports-es6-autofix/sort-imports-es6": [
2,
{
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"none",
"all",
"multiple",
"single"
]
}
]
}
},
"prettier": {
"printWidth": 140,
"semi": true,
"singleQuote": false,
"trailingComma": "none"
},
"jest": {
"testTimeout": 30000,
"moduleNameMapper": {
"^@src/(.*)$": "<rootDir>/src/$1",
"^@test/(.*)$": "<rootDir>/test/$1"
},
"preset": "ts-jest",
"testMatch": [
"<rootDir>/test/all.test.ts"
]
},
"devDependencies": {
"@types/lodash": "^4.14.167",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/parser": "^4.14.2",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"commander": "^7.0.0",
"date-fns": "^2.16.1",
"lodash": "^4.17.20",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"tsconfig-paths": "^3.9.0"
}
}