This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "mc-api",
"description": "Mapas Coletivos API Service",
"repository": {
"type": "git",
"url": "git://github.com/mapascoletivos/api.git"
},
"version": "1.0.0-beta1",
"author": "Mapas Coletivos <contato@mapascoletivos.com.br>",
"contributors": [
{
"name": "Miguel Peixe",
"email": "miguel@cardume.art.br"
},
{
"name": "Vitor George",
"email": "vitor.george@gmail.com"
}
],
"engines": {
"node": ">=10"
},
"main": "web.js",
"scripts": {
"start": "node web.js",
"dev": "NODE_ENV=development node_modules/.bin/nodemon web.js",
"start-dev-db": "docker-compose --project-name mc up dev-db",
"start-test-db": "docker-compose --project-name mc up test-db",
"test": "NODE_ENV=test node_modules/.bin/mocha test/test--index.js",
"lint": "node_modules/.bin/eslint app/ test/ --ext .js"
},
"dependencies": {
"async": "^2.6.1",
"axios": "^0.18.0",
"config": "^3.1.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"cors": "^2.8.5",
"crypto": "0.0.3",
"express": "^3.21.2",
"express-namespace": "^0.1.1",
"forever": "latest",
"fs-extra": "^7.0.1",
"i18next": "^1.7.0",
"jade": "^1.9.2",
"less": "^2.4.0",
"less-middleware": "^2.0.1",
"moment": "^2.9.0",
"mongoose": "^5.5.4",
"mysql": "^2.6.1",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"postmark": "^1.0.0",
"prettier": "^1.15.3",
"pug": "^2.0.3",
"sharp": "^0.22.1",
"underscore": "^1.8.2",
"validator": "^3.35.0",
"view-helpers": "^0.1.5",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"grunt": "0.4.5",
"i18next-parser": "^0.13.0",
"lorem-ipsum": "~1.0.1",
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"rosie": "0.4.0",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"keywords": [
"mapping",
"yby"
]
}