-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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-apollo-express",
"version": "1.0.0",
"author": "ulquiomaru",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test-server": "cross-env TEST_DATABASE=graphqltest npm start",
"test": "mocha --require @babel/register 'src/**/*.spec.js'"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"axios": "^0.21.2",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^8.1.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"apollo-server": "^2.25.4",
"apollo-server-express": "^2.16.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"graphql": "^15.3.0",
"graphql-iso-date": "^3.6.1",
"graphql-resolvers": "^0.4.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.3.0",
"sequelize": "^6.29.0",
"uuid": "^8.3.0"
}
}