-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1009 Bytes
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
{
"name": "graphql-server-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./index.js --exec babel-node",
"monitor": "nodemon ./index.js --exec babel-node -e js",
"test": "npx jest",
"test:watch": "npx jest --watchAll",
"unittest": "npx jest --coverage --coverageReporters=json-summary --reporters=default --reporters=jest-junit --testPathPattern=test/unit",
"apitest": "npx jest --testPathPattern=test/api"
},
"author": "",
"license": "ISC",
"dependencies": {
"casual": "^1.6.2",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^16.8.1",
"mongoose": "^8.4.0",
"nodemon": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.8",
"graphql-tag": "^2.12.6",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"mockingoose": "^2.16.2",
"supertest": "^7.1.0"
}
}