-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.82 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": "dns-watcher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently 'npm run start:watcher' 'npm run start:prod'",
"lint": "prettier --write 'watcher/src/**/*.{js,json}' 'frontend/src/**/*.{js,jsx,json}'",
"postinstall": "npm install ./frontend",
"build:prod": "npm --prefix ./frontend run build",
"build:watcher": "rimraf watcher/dist/ && babel ./watcher/src --out-dir watcher/dist/ --ignore ./node_modules --copy-files",
"start:dev": "npm run build:watcher && npm --prefix ./frontend run serve",
"start:prod": "npm run build:watcher && npm --prefix ./frontend start",
"start:watcher": "npm run build:watcher && RES_OPTIONS='retrans:2500 retry:2' node --max-old-space-size=8192 --require dotenv/config watcher/dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.6.1",
"async-redis": "^1.1.4",
"cli-progress": "^2.1.0",
"dns-watcher-frontend": "file:frontend",
"dotenv": "^6.1.0",
"file-extension": "^4.0.5",
"firstline": "^2.0.2",
"fs-extra": "^7.0.1",
"function-rate-limit": "^1.1.0",
"i18n-iso-countries": "^3.7.8",
"ip": "^1.1.5",
"module-alias": "^2.1.0",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"node-schedule": "^1.3.1",
"query-string": "^6.2.0",
"redis": "^2.8.0",
"redis-await": "^1.0.6",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"twilio": "^3.33.0",
"vue-multiselect": "^2.1.3",
"webshot": "^0.18.0"
},
"_moduleAliases": {
"@": "watcher/dist",
"@lib": "watcher/dist/lib",
"@lists": "watcher/dist/lists"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/preset-env": "^7.1.6",
"concurrently": "^4.1.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.2"
}
}