-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.66 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
{
"name": "my-graphql-apollo",
"version": "1.0.0",
"description": "GraphQL server built with Apollo Server, Node.js, and TypeScript. It serves as a mock API for managing TV shows data",
"main": "index.js",
"scripts": {
"audit": "echo '🔍 Running audit...' && npm audit",
"audit:fix": "echo '🔧 Fixing audit issues...' && npm audit fix",
"build": "echo '🏗️ Building...' && tsc",
"dev": "echo '🚀 Starting development server...' && ts-node src/index.ts",
"start": "echo '🟢 Starting app...' && node dist/index.js",
"watch": "echo '👀 Watching for changes...' && nodemon --exec npm run dev",
"test": "echo '✅ Running tests...' && jest",
"test:watch": "echo '🔍✅ Watching tests...' && jest --watch",
"test:coverage": "echo '📊 Generating test coverage...' && jest --coverage",
"test:verbose": "echo '🗣️ Running tests in verbose mode...' && jest --verbose",
"test:debug": "echo '🐛 Debugging tests...' && node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:debug:watch": "echo '🐛👀 Watching and debugging tests...' && node --inspect-brk ./node_modules/.bin/jest --watchAll",
"clean": "echo '🧽 Cleaning up...' && rm -rf ./node_modules ./dist && rm package-lock.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.11.0",
"aws-sdk": "^2.1691.0",
"graphql": "^16.9.0",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}