-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 3.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "open311-api",
"version": "0.1.0",
"description": "open311 API",
"main": "server.js",
"keywords": [
"open311",
"open311-api",
"civic",
"jurisdiction",
"issue",
"service",
"service request",
"status",
"status change",
"government",
"jurisdiction",
"service",
"issue",
"request",
"ticket",
"resolve",
"citizen",
"public"
],
"homepage": "https://github.com/CodeTanzania/open311-api/",
"bugs": {
"url": "https://github.com/CodeTanzania/open311-api/issues",
"email": "lallyelias87@gmail.com"
},
"license": "MIT",
"author": {
"name": "lally elias",
"email": "lallyelias87@gmail.com"
},
"contributors": [
{
"name": "lallyelias",
"email": "lallyelias87@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/CodeTanzania/open311-api/"
},
"scripts": {
"dev": "BASE_PATH=./ NODE_ENV=development node server.js",
"prod": "BASE_PATH=./ NODE_ENV=production node server.js",
"test": "grunt spec",
"start": "pm2 start production.json",
"stop": "pm2 stop production.json",
"restart": "pm2 restart production.json",
"reload": "pm2 reload production.json",
"refresh": "pm2 reload production.json --update-env",
"delete": "pm2 delete production.json",
"startup": "pm2 startup",
"save": "pm2 save",
"remove": "sudo update-rc.d -f pm2-init.sh remove"
},
"dependencies": {
"@codetanzania/majifix-account": "^1.7.4",
"@codetanzania/majifix-alert": "^1.1.5",
"@codetanzania/majifix-common": "^0.11.1",
"@codetanzania/majifix-jurisdiction": "^1.5.2",
"@codetanzania/majifix-priority": "^1.4.3",
"@codetanzania/majifix-service": "^1.1.3",
"@codetanzania/majifix-service-group": "^1.2.3",
"@codetanzania/majifix-status": "^1.4.3",
"@lykmapipo/env": "^0.3.1",
"@lykmapipo/express-common": "^0.9.2",
"@lykmapipo/permission": "^0.3.0",
"@lykmapipo/postman": "^0.5.0",
"@lykmapipo/role": "^0.2.0",
"async": "^2.6.1",
"config": "^2.0.1",
"csv": "^4.0.0",
"ejs": "^2.6.1",
"email-templates": "^5.0.1",
"express": "^4.16.4",
"express-respond": "^0.4.0",
"fs-extra": "^7.0.0",
"helmet": "^3.14.0",
"inflection": "^1.12.0",
"irina": "^0.5.1",
"jsonwebtoken": "^8.3.0",
"kue": "^0.11.6",
"lodash": "^4.17.11",
"mkdir-p": "0.0.7",
"moment": "^2.22.2",
"mongoose": "^5.3.4",
"mongoose-autopopulate": "^0.8.2",
"mongoose-exists": "^0.6.1",
"mongoose-geojson-schemas": "^0.8.1",
"mongoose-hidden": "^1.6.0",
"mongoose-kue": "^0.7.1",
"mongoose-locale-schema": "^0.2.1",
"mongoose-regex-search": "^0.5.1",
"mongoose-rest-actions": "^0.18.2",
"mongoose-schema-jsonschema": "^1.1.15",
"mongoose-valid8": "^1.0.1",
"open311-api-sync": "^0.2.2",
"parse-ms": "^2.0.0",
"phone": "^2.2.0",
"pretty-ms": "^4.0.0",
"randomcolor": "^0.5.3",
"require-all": "^3.0.0",
"seed-mongoose": "^0.5.0",
"shortid": "^2.2.13",
"string-template": "^1.0.0",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.3.3"
},
"devDependencies": {
"@benmaruchu/faker": "^4.2.1",
"chai": "^4.2.0",
"faker": "^4.1.0",
"grunt": "^1.0.3",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-newer": "^1.3.0",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0",
"sinon-mongoose": "^2.2.1",
"supertest": "^3.3.0",
"time-grunt": "^1.4.0"
},
"engines": {
"node": "8.6.0",
"npm": "5.3.0"
}
}