-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
51
{
"name": "fastify-graphQL-mongodb",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/NoahWTeng/fastify-graphQL-mongodb.git",
"author": "NoahWTeng <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "node index.js",
"start": "node -r dotenv/config index.js",
"dev": "nodemon --exec babel-node -r dotenv/config index.js",
"seed":"node seed/index.js",
"lint": "eslint \"**/*.js\"",
"format": "prettier --write \"**/*.js\"",
"test:unit": "jest -c unit.jest.config.js",
"precommit": "lint-staged && npm run test:unit"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"chai": "^4.2.0",
"colors": "^1.4.0",
"del": "^6.0.0",
"depcheck": "^1.3.1",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sinon": "^9.2.3"
},
"dependencies": {
"@hapi/boom": "^9.1.1",
"awilix": "^4.3.1",
"change-case": "^4.1.2",
"dayjs": "^1.10.3",
"dotenv": "^8.2.0",
"fastify": "^3.10.1",
"fastify-cli": "^2.7.0",
"fastify-cors": "^5.1.0",
"fastify-helmet": "^5.1.0",
"fastify-jwt": "^2.3.0",
"fastify-plugin": "^3.0.0",
"fastify-swagger": "^3.5.0",
"graphql": "^15.4.0",
"http-status": "^1.5.0",
"mercurius": "^6.10.0",
"mongoose": "^5.11.12",
"pino-pretty": "^4.3.0",
"ramda": "^0.27.1"
}
}