-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 1.99 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
{
"name": "api",
"version": "2.0.0",
"description": "AXS Map API endpoints",
"main": "src/index.js",
"repository": "[email protected]:axsmap/api.git",
"author": "Gustavo <[email protected]>",
"private": true,
"scripts": {
"cmt": "git-cz",
"deploy": "now && now alias",
"serve": "cross-env NODE_ENV=development gulp",
"start": "node src/index.js"
},
"devDependencies": {
"commitizen": "2.10.1",
"cross-env": "5.0.5",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.19.1",
"eslint-config-semistandard": "12.0.1",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.10.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.1.0",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-nodemon": "2.2.1",
"husky": "1.0.0-rc.13",
"lint-staged": "7.2.2",
"prettier": "1.14.2"
},
"dependencies": {
"aws-sdk": "2.94.0",
"axios": "0.18.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.17.2",
"cors": "2.8.4",
"dotenv": "4.0.0",
"express": "4.15.3",
"form-data": "2.3.2",
"freemail": "1.5.0",
"google-auth-library": "0.10.0",
"helmet": "3.8.1",
"ip": "1.1.5",
"jimp": "0.2.28",
"jsonwebtoken": "7.4.1",
"lodash": "4.17.4",
"moment": "2.18.1",
"moment-timezone": "0.5.21",
"mongodb-uri": "0.9.7",
"mongoose": "5.3.2",
"morgan": "1.8.2",
"multer": "1.3.0",
"nodemailer": "4.0.1",
"now": "11.4.6",
"randomstring": "1.1.5",
"raven": "2.6.0",
"speakingurl": "14.0.0",
"validator": "9.4.1"
},
"lint-staged": {
"src/**/*.{js}": [
"eslint --fix",
"git add"
],
"src/**/*.{js,json}": [
"prettier --single-quote --trailing-comma none --tab-width=2 --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}