-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
30 lines (30 loc) · 838 Bytes
/
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
{
"name": "table-tennis",
"version": "1.0.0",
"description": "Table Tennis tournament generator and GraphQL projection.",
"main": "dist/index.js",
"author": "[email protected]",
"license": "Proprietary",
"private": true,
"devDependencies": {
"@graphql-codegen/cli": "1.19.1",
"@graphql-codegen/typescript": "1.17.11",
"@graphql-codegen/typescript-resolvers": "1.17.10",
"@types/chance": "1.1.0",
"@types/node": "12.19.4",
"event-store-projection-testing": "2.1.0",
"ts-node": "9.0.0",
"typescript": "4.0.5"
},
"dependencies": {
"apollo-server": "2.19.0",
"axios": "0.21.0",
"chance": "1.1.7",
"graphql": "15.4.0"
},
"scripts": {
"tournament": "ts-node src/index.ts",
"apollo": "ts-node src/graphql/launch.ts",
"generate-types": "graphql-codegen"
}
}