-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "dele-viaje-graphql",
"version": "2.0.0",
"description": "Graphql API to recommend tourist sites based on user search criteria.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"sequelize-skeleton": "./node_modules/sequelize-cli/lib/sequelize init:models; ./node_modules/sequelize-cli/lib/sequelize init:config",
"init-db": "cd /opt/lampp/bin && echo 'DROP DATABASE IF EXISTS dele_viaje_db; CREATE DATABASE dele_viaje_db CHARACTER SET utf8 COLLATE utf8_general_ci' | ./mysql -u root && cd -",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryandms/dele-viaje.git"
},
"author": "bryandms",
"license": "MIT",
"bugs": {
"url": "https://github.com/bryandms/dele-viaje/issues"
},
"homepage": "https://github.com/bryandms/dele-viaje#readme",
"dependencies": {
"apollo-resolvers": "^1.4.1",
"apollo-server-express": "^2.4.0",
"bcrypt": "^3.0.4",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"graphql": "^14.1.1",
"jsonwebtoken": "^8.4.0",
"merge-graphql-schemas": "^1.5.8",
"path": "^0.12.7",
"pg": "^7.8.0",
"sequelize": "^4.42.0"
},
"devDependencies": {
"easygraphql-tester": "^5.0.0",
"mocha": "^5.2.0"
}
}