-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.69 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
{
"name": "growlerapp",
"version": "3.0.179",
"description": "App for search your near growler",
"main": "src",
"scripts": {
"start": "node src",
"dev": "nodemon --inspect=0.0.0.0:9229 src",
"dev:docker": "nodemon --inspect=0.0.0.0:9229 src",
"initdb": "node src/initdb",
"lint": "eslint .",
"format": "prettier-standard 'src/**/*.js' 'test/**/*.js'",
"test": "MONGODB_URI=mongodb://localhost/growler_test nyc mocha",
"ts-compile-check": "tsc -p tsconfig.json --noEmit"
},
"engines": {
"node": "14.16.1"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/growlerapp/api.git"
},
"keywords": [
"growler",
"graphql"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/growlerapp/api/issues"
},
"homepage": "https://github.com/growlerapp/api#readme",
"dependencies": {
"@godaddy/terminus": "4.10.2",
"@googlemaps/google-maps-services-js": "2.6.1",
"@sentry/node": "5.30.0",
"apollo-server-express": "2.25.3",
"axios": "0.21.1",
"body-parser": "1.19.0",
"cors": "2.8.5",
"dotenv": "8.6.0",
"express": "4.17.1",
"graphql": "15.5.0",
"graphql-geojson": "1.0.0",
"helmet": "3.23.3",
"mongoose": "5.13.14",
"morgan": "1.10.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@eclass/eslint-config": "2.0.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.0",
"@semantic-release/npm": "7.0.10",
"@semantic-release/release-notes-generator": "9.0.1",
"@types/body-parser": "1.19.0",
"@types/cors": "2.8.10",
"@types/express": "4.17.11",
"@types/helmet": "0.0.48",
"@types/mongoose": "5.11.96",
"@types/morgan": "1.9.2",
"@types/node": "12.20.2",
"chai": "4.3.0",
"eslint": "7.32.0",
"eslint-plugin-array-func": "3.1.7",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "27.1.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-sonarjs": "0.12.0",
"eslint-plugin-standard": "4.1.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"mocha": "8.4.0",
"nodemon": "2.0.7",
"nyc": "15.1.0",
"nyc-config-common": "1.0.1",
"prettier-standard": "16.4.1",
"semantic-release": "17.3.9",
"supertest": "4.0.2",
"typescript": "3.9.9"
}
}