-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "graphql-api-sequelize-typescript",
"version": "1.0.0",
"description": "GraphQL API with Node.js, MySQL, Sequelize ORM, and TypeScript",
"main": "dist/server.js",
"scripts": {
"generate": "graphql-codegen --config codegen.yml",
"build": "npm run generate && tsc",
"start": "node dist/server.js",
"dev": "npm run generate && ts-node-dev --respawn --transpile-only src/server.ts",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "npm run lint && npm run format"
},
"keywords": [
"graphql",
"nodejs",
"sequelize",
"mysql",
"apollo",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.10.0",
"dotenv": "^16.4.0",
"graphql": "^16.8.0",
"mysql2": "^3.9.0",
"sequelize": "^6.37.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-resolvers": "^4.0.0",
"@graphql-tools/graphql-file-loader": "^8.1.9",
"@graphql-tools/load": "^8.1.8",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.0.0",
"jest": "^30.2.0",
"prettier": "^3.8.0",
"sqlite3": "^5.1.7",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.53.0"
}
}