-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
{
"name": "node-apollo-express-pg",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"engines": {
"node": "12.11.1"
},
"scripts": {
"babel-node": "npx babel-node --presets=/*a*/ --ignore='foo|bar|baz'",
"startdev": "nodemon --exec npx babel-node src/index.js",
"start": "node build/index.js",
"test:run-server": "TEST_DATABASE=postgres://bryant@localhost:5432/test_graphql_db yarn startdev",
"test:execute-test": "mocha --require @babel/register 'src/**/*.spec.js'",
"test": "mocha --require @babel/register 'src/**/*.spec.js'",
"build": "babel src -d build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.0.0",
"axios": "^0.19.0",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"nodemon": "^1.18.7"
},
"dependencies": {
"apollo-server": "^2.2.3",
"apollo-server-express": "^2.2.3",
"apollo-server-lambda": "^2.9.5",
"authy": "^1.4.0",
"authy-client": "^1.1.4",
"bcrypt": "^3.0.2",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"dotenv": "^8.1.0",
"express": "^4.16.4",
"graphql": "^14.5.8",
"graphql-iso-date": "^3.6.1",
"graphql-resolvers": "^0.3.3",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.9.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.19.2",
"uuid": "^3.3.2"
}
}