-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.91 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.91 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
{
"name": "my-graphql-apollo",
"version": "1.0.0",
"type": "module",
"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...' && NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "echo '🔍✅ Watching tests...' && NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "echo '📊 Generating test coverage...' && NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:verbose": "echo '🗣️ Running tests in verbose mode...' && NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:debug": "echo '🐛 Debugging tests...' && NODE_OPTIONS=--experimental-vm-modules node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:debug:watch": "echo '🐛👀 Watching and debugging tests...' && NODE_OPTIONS=--experimental-vm-modules 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": "^5.4.0",
"aws-sdk": "^2.1693.0",
"graphql": "^16.13.0",
"graphql-request": "^7.4.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}