forked from ignivalancy/hano
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
{
"name": "hano",
"version": "1.0.0",
"description": "Hapi and Node Project For Scaleable Apps",
"engines": {
"node": ">=8.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignivalancy/hano.git"
},
"keywords": ["node", "hapi", "js", "socket", "mongo"],
"bugs": {
"url": "https://github.com/ignivalancy/hano/issues"
},
"homepage": "https://github.com/ignivalancy/hano#readme",
"dependencies": {
"apn": "2.1.5",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.1",
"boom": "^6.0.0",
"config": "1.26.2",
"fcm-node": "1.2.0",
"good": "^8.0.0-rc1",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"hapi": "^17.1.1",
"hapi-swaggered": "^3.0.2",
"hapi-swaggered-ui": "^3.0.1",
"http-status": "1.0.1",
"inert": "^5.0.1",
"joi": "13.0.1",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"md5": "2.2.1",
"moment": "2.19.1",
"mongoose": "^4.12.4",
"nodemailer": "4.2.0",
"nodemailer-smtp-transport": "2.7.4",
"path": "^0.12.7",
"slugify": "^1.2.9",
"socket.io": "2.0.4",
"stripe": "5.1.1",
"twilio": "3.9.0",
"underscore": "1.8.3",
"vision": "^5.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bunyan": "^2.0.2",
"eslint": "^4.13.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"nodemon": "^1.12.1",
"prettier": "^1.8.2"
},
"main": "main.js",
"scripts": {
"start": "nodemon --exec babel-node -- main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && babel . -d dist --ignore node_modules,web && cp package.json dist",
"serve": "node dist/main.js",
"ri": "rm -rf node_modules && npm install",
"lint": "./node_modules/.bin/eslint . --ext .js",
"rp":
"prettier --write \"**/*.json\" \"**/*.js\" \"!web/**/*.js\" \"!web/**/*.json\" \"!dist/**/*.js\"",
"precommit": "npm run rp && lint-staged"
},
"author": "Lancy Goyal",
"email": "[email protected]",
"url": "https://lancygoyal.github.io",
"license": "MIT"
}