-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "graphql-demo",
"version": "1.0.0",
"description": "Graphql Node.js Sequelize tutorial",
"main": "server.js",
"repository": "https://github.com/JaspinderPawar/graphql-demo",
"author": "Jaspinder Singh<jaspinderpawar@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"test": "cross-env-shell NODE_ENV=test \"sequelize db:migrate:undo:all && sequelize db:migrate && npm run spec\"",
"spec": "cross-env-shell NODE_ENV=test \"mocha --recursive --require esm --timeout 25000\""
},
"dependencies": {
"apollo-datasource": "^0.7.0",
"apollo-server-express": "^2.13.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"graphql": "^15.0.0",
"graphql-middleware": "^6.0.7",
"graphql-resolvers": "^0.4.2",
"graphql-shield": "^7.5.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.0.3",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.7"
},
"devDependencies": {
"apollo-server-integration-testing": "^3.0.0",
"cross-env": "^7.0.3",
"mocha": "^8.3.2",
"nodemon": "^2.0.4"
}
}