-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
{
"name": "community-risk",
"description": "Dashboard",
"version": "0.0.2",
"author": "510 - Rode Kruis <support@510.global> (https://www.510.global/)",
"license": "LGPL-3.0",
"repository": "github:rodekruis/CommunityRisk",
"homepage": "https://dashboard.510.global/",
"scripts": {
"postinstall": "bower-installer -p",
"clean:dist": "rimraf public/dist/*",
"prestart": "npm run clean:dist",
"start": "grunt",
"prebuild": "npm run clean:dist",
"build": "grunt build",
"predeploy": "npm install",
"deploy": "npm run build && echo 'Deployed!'",
"test:syntax": "prettier --check \"**/**.{json,yaml,yml,css,html,js}\" ",
"test:js": "eslint --quiet --cache --ignore-path .prettierignore \"./\" ",
"test": "npm run test:syntax && npm run test:js"
},
"husky": {
"hooks": {
"post-merge": "npm install",
"pre-commit": "pretty-quick --staged --verbose",
"pre-push": "npm test"
}
},
"dependencies": {
"async": "1.5.x",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.16.2",
"glob": "^7.1.4",
"google-spreadsheet": "2.0.x",
"helmet": "^3.20.0",
"leaflet.markercluster": "^1.4.1",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"nodemailer": "2.3.x",
"nunjucks": "^3.2.0",
"passport": "^0.4.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.x",
"path": "0.12.x",
"pg": "^6.4.2",
"request": "2.88.0",
"sequelize": "^4.44.2",
"url": "0.11.x"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"grunt": "^1.0.4",
"grunt-cli": "1.3.2",
"grunt-concurrent": "2.3.*",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-uglify": "1.0.*",
"grunt-contrib-watch": "^1.1.0",
"grunt-nodemon": "*",
"husky": "^3.0.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rimraf": "^3.0.0"
}
}