-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.23 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.23 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
66
67
68
69
70
71
72
{
"name": "graphql-api-starter",
"version": "1.0.0",
"description": "Starter kit for building a TypeScript GraphQL server with generated queries and CUD mutations per entity. ORM-agnostic with legacy Sequelize support during migration.",
"main": "index.js",
"dependencies": {
"@pothos/core": "^4.0.0",
"@pothos/plugin-prisma": "^4.0.0",
"@prisma/client": "^6.15.0",
"babel-register": "^6.24.0",
"babel-resolver": "^1.1.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"express": "~4.15.2",
"express-generator": "^4.14.1",
"graphql": "^16.8.1",
"graphql-yoga": "^5.7.0",
"morgan": "~1.8.1",
"pg": "^6.1.5",
"pug": "~2.0.0-rc.4",
"serve-favicon": "~2.4.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"babel-cli": "^6.4.0",
"babel-preset-env": "^1.2.2",
"bluebird": "^3.5.0",
"dotenv-cli": "^10.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"mocha": "^3.3.0",
"nodemon": "^1.11.0",
"prettier": "^3.3.3",
"prisma": "^6.15.0",
"supertest": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.1"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "NODE_ENV=production node dist/app.js",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"test": "npm run generate:test && jest",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write .",
"prisma": "prisma",
"migrate": "prisma migrate dev",
"generate": "prisma generate",
"generate:test": "prisma generate --schema=./prisma/test.prisma"
},
"repository": {
"type": "git",
"url": "git@github.com:wilburhimself/graphql_api_starter.git"
},
"author": "Wilbur Suero",
"license": "MIT",
"homepage": "https://github.com/wilburhimself/graphql_api_starter"
}