-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "dns-lookup.com",
"verion": "2.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run lint || echo 'Error'",
"lint": "eslint '*/**/*.js'",
"start": "pm2 startOrRestart ecosystem.json --env production --watch",
"deploy": "pm2 deploy ecosystem.json production --force",
"travis-deploy": "if-env TRAVIS_BRANCH=master TRAVIS_PULL_REQUEST=false && npm run release || echo 'Deploy is not run'",
"upgrade": "npx npm-check-updates -u -x ejs && npm install",
"dev": "PORT=5002 concurrently 'nodemon --inspect app' 'open http://localhost:${PORT}'",
"release": "ssh-keyscan 192.241.157.86 >> ~/.ssh/known_hosts && npm run deploy",
"reinstall": "rm -rf node_modules package-lock.json && npm i"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"refactor",
"perf",
"test",
"chore",
"revert",
"ci"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"repository": {
"type": "git",
"url": "https://github.com/circlecell/dns-lookup.com.git"
},
"keywords": [
"dns",
"lookup"
],
"author": "circlecell",
"license": "MIT",
"bugs": {
"url": "https://github.com/circlecell/dns-lookup.com/issues"
},
"homepage": "https://github.com/circlecell/dns-lookup.com#readme",
"devDependencies": {
"concurrently": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"ghooks": "^2.0.4",
"if-env": "^1.0.4",
"nodemon": "^2.0.12",
"open-cli": "^7.0.0",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"deep-equal": "^2.0.5",
"ejs": "^2.7.1",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.5"
}
}