-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "apollo-express-postgres-sample-application",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "10.11.0"
},
"scripts": {
"start": "nodemon src/index.js",
"test:run-server": "TEST_DATABASE=mytestdatabase npm start",
"test:execute-test": "mocha --require @babel/register 'src/**/*.spec.js'",
"test": "echo \"No test specified\" && exit 0",
"postinstall": "sh scripts/heroku-predeploy.sh"
},
"keywords": [],
"author": "Robin Wieruch <[email protected]> (https://www.robinwieruch.de)",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"axios": "^0.18.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"apisauce": "^1.0.2",
"apollo-server": "^2.2.3",
"apollo-server-express": "^2.14.2",
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-winston": "^3.1.0",
"graphql": "^14.0.2",
"graphql-iso-date": "^3.6.1",
"graphql-rate-limit": "^2.0.0",
"graphql-resolvers": "^0.2.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.5.0",
"uuid": "^3.3.2",
"winston": "^3.2.1"
}
}