-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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": "feature-rich-graphql-express-server",
"version": "1.0.0",
"description": "A feature rich GraphQL Express Server",
"main": "server.js",
"dependencies": {
"apollo-server": "^2.11.0",
"apollo-server-express": "^2.11.0",
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"graphql-iso-date": "^3.6.1",
"graphql-resolvers": "^0.4.2",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.2",
"sequelize": "^5.21.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.6",
"axios": "^0.19.2",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"nodemon": "^2.0.2"
},
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test": "mocha --require @babel/register 'src/**/*.spec.js'",
"test-server": "TEST_DATABASE=mytestdatabase npm start"
},
"repository": {
"type": "git",
"url": "git@github.com:krynv/feature-rich-graphql-express-server.git"
},
"keywords": [
"graphql",
"express"
],
"author": "Vitaliy Krynytskyy",
"license": "ISC",
"bugs": {
"url": "https://github.com/krynv/feature-rich-graphql-express-server/issues"
},
"homepage": "https://github.com/krynv/feature-rich-graphql-express-server#readme"
}