-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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": "graphql-apollo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node --unhandled-rejections=strict src/index.js",
"test-server": "TEST_DATABASE=graphql_apollo_test npm start",
"test": "mocha --require @babel/register 'src/**/*.spec.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/node": "^7.12.6",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"axios": "^0.21.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6"
},
"dependencies": {
"apollo-server": "^2.19.0",
"apollo-server-express": "^2.19.0",
"bcrypt": "^5.0.0",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-iso-date": "^3.6.1",
"graphql-resolvers": "^0.4.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.16",
"pg": "^8.5.1",
"sequelize": "^5.22.3",
"uuid": "^8.3.1",
"validator": "^13.1.17"
}
}