-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 KB
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
{
"name": "typescript-express-graphql-starter",
"private": true,
"version": "0.1.0",
"description": "TypeScript Express GraphQL Starter",
"main": "dist/app.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "nodemon src/app.ts",
"lint:check": "eslint src tests",
"lint:format": "eslint --fix src tests",
"start": "node -r ts-node/register -r tsconfig-paths/register dist/app.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amoghmadan/TypeScript-Express-GraphQL-Starter.git"
},
"keywords": [
"TypeScript",
"Express",
"GraphQL",
"Starter"
],
"author": "Amogh Madan <amoghmadaan@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/amoghmadan/TypeScript-Express-GraphQL-Starter/issues"
},
"homepage": "https://github.com/amoghmadan/TypeScript-Express-GraphQL-Starter#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.20",
"@types/supertest": "^6.0.2",
"@types/yargs": "^17.0.32",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-http": "^1.22.0",
"graphql-playground-middleware-express": "^1.7.23",
"helmet": "^7.1.0",
"joi": "^17.12.2",
"mongoose": "^8.2.0",
"morgan": "^1.10.0",
"read": "^3.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"yargs": "^17.7.2"
}
}