This repository has been archived by the owner on Oct 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "harper-backend-graphql",
"version": "0.1.0",
"main": "src/index.ts",
"description": "This is the backend of the **Harper** project",
"scripts": {
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"lint": "eslint src/* --ext .ts --fix",
"service": "nodemon",
"start": "node dist/index.js",
"release": "standard-version",
"test": "jest"
},
"author": "Anthony <[email protected]>",
"dependencies": {
"@fastify/swagger": "^6.0.1",
"@graphql-tools/merge": "^8.2.13",
"@graphql-tools/schema": "^8.3.13",
"@sinclair/typebox": "^0.23.5",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"apollo-server-core": "^3.7.0",
"apollo-server-fastify": "^3.7.0",
"apollo-server-plugin-base": "^3.5.3",
"cron": "^2.0.0",
"fastify": "^3.29.0",
"googleapis": "^100.0.0",
"graphql": "^16.5.0",
"http-errors": "^2.0.0",
"mongoose": "^6.3.4",
"nodemailer": "^6.7.5",
"pino-pretty": "^7.6.1"
},
"devDependencies": {
"@jest/types": "^28.1.0",
"@types/cron": "^2.0.0",
"@types/http-errors": "^1.8.2",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"dotenv": "^16.0.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.2",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"jest-unit": "^0.0.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.3",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"tsconfig-paths": "^4.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"license": "MIT"
}