-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
54
55
56
57
{
"name": "Intro to GraphQL with TypeScript",
"private": true,
"description": "The starter code for the Odyssey Intro to GraphQL with TypeScript course",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollographql-education/intro-typescript"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0"
},
"scripts": {
"compile": "tsc",
"dev": "ts-node-dev --respawn ./src/index.ts",
"start": "npm run compile && nodemon ./dist/index.js",
"test": "jest",
"generate": "graphql-codegen"
},
"dependencies": {
"@apollo/datasource-rest": "^6.3.0",
"@apollo/server": "^4.11.0",
"@parcel/watcher": "^2.4.0",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-resolvers": "^4.2.1",
"@types/jest": "^29.0.3",
"@types/node": "^20.0.0",
"concurrently": "^8.2.2",
"jest": "^29.0.3",
"nodemon": "^3.0.0",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"src"
],
"globals": {
"ts-jest": {
"testRegext": "/__tests__/.*.test.ts",
"verbose": true
}
}
}
}