-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "byte5-azure-crawler",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register ./src/index.ts",
"web": "node ./dist/index.js",
"watch": "nodemon",
"run:prod": "rimraf ./dist && tsc && pm2 start dist/index.js --watch -f --name crawler"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-unicorn": "^16.1.1",
"nodemon": "^2.0.3",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"domain-ping": "^0.1.10",
"express": "^4.17.1",
"nslookup": "^1.1.1",
"pm2": "^4.4.0",
"tcp-ping": "^0.1.1",
"whois": "^2.12.1",
"whois-json": "^2.0.4"
},
"browserslist": [
"IE 11"
],
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "yarn start",
"ext": "ts"
}
}