-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "geo-project",
"version": "1.0.0",
"description": "A TypeScript-based GraphQL server integrated with Apollo, utilizing a JSON server API for handling geographical data.",
"main": "dist/server.js",
"type": "module",
"scripts": {
"start": "node ./dist/server.js",
"dev": "node --watch ./dist/server.js",
"debug": "node dist/server.js --inspect",
"build": "rm -rf ./dist && tsc",
"json-server": "json-server --watch ./source/database/db.json --port 3001",
"test-server": "json-server --watch ./source/database/tests/test-db.json --port 5000",
"test": "jest"
},
"engines": {
"npm": ">=9.5.1",
"node": ">=18.16.0"
},
"keywords": [
"typescript",
"node",
"graphql",
"apollo"
],
"author": "emelipasini",
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.7.2",
"@faker-js/faker": "^8.0.2",
"axios": "^1.4.0",
"config": "^3.3.9",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"json-server": "^0.17.3"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/config": "^3.3.0",
"@types/jest": "^29.5.2",
"@types/json-server": "^0.14.4",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}