-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.96 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
101
102
103
104
105
{
"name": "emailchecker",
"version": "0.0.1",
"description": "Typescript Project",
"main": "dist/index.js",
"author": "Arsen A. Gutsal ",
"license": "MIT",
"scripts": {
"start": "node_modules/.bin/ts-node -r tsconfig-paths/register src/index.ts",
"build": "node_modules/.bin/webpack",
"lint": "node_modules/.bin/tslint src/**/*.ts",
"test": "node_modules/.bin/jest --colors --watchAll",
"test:ci": "cross-env CI=true jest --colors",
"format": "prettier --write \"src/**/*\"",
"conflict-rules": "tslint-config-prettier-check ./tslint.json"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.json"
}
},
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/src/$1"
},
"moduleDirectories": [
"<rootDir>/src",
"node_modules"
],
"preset": "ts-jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"tslint -c tslint.json --fix",
"git add"
],
"*.{json,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"parser": "typescript",
"semi": false,
"singleQuote": true,
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json"
}
}
]
},
"devDependencies": {
"@types/jest": "^23.3.13",
"babel-preset-bluebird": "^1.0.1",
"chai": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^1.0.0",
"generator-jest": "^1.6.0",
"jest": "23.0.0",
"prettier": "^1.16.3",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tsconfig-paths": "^3.7.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@types/bluebird": "^3.5.25",
"@types/delay": "^3.1.0",
"@types/lodash": "^4.14.120",
"@types/mongoose": "^5.3.12",
"@types/node": "^10.12.20",
"async": "^2.6.1",
"axios": "^0.18.0",
"commandpost": "^1.4.0",
"delay": "^4.1.0",
"email-existence": "^0.1.6",
"email-exists": "^0.2.1",
"lodash": "^4.17.11",
"mongoose": "^5.4.10",
"p-queue": "^3.0.0",
"p-throttle": "^2.1.1",
"promise-limit": "^2.7.0",
"readline": "^1.3.0",
"ts-jest": "^23.10.5",
"winston": "3"
}
}