-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.39 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
{
"name": "demo-strike",
"version": "1.0.0",
"description": "A project to parse CSGO Demos and provide insights into history and stats.",
"workspaces": [
"packages/client",
"packages/server"
],
"scripts": {
"generate": "graphql-codegen --config codegen.yml && npm run prisma:generate -w server",
"test": "npm run test -ws",
"build": "npm run build -ws",
"start": "concurrently -k -c blue,bgBlue -n REACT,SERVER \"npm run watch -w packages/client\" \"npm run start:dev -w packages/server\"",
"start:debug": "concurrently -k -c blue,bgBlue -n REACT,SERVER \"npm run watch -w packages/client\" \"npm run start:debug -w packages/server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/spRite75/demo-strike.git"
},
"author": "Luke Montgomery",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/spRite75/demo-strike/issues"
},
"homepage": "https://github.com/spRite75/demo-strike#readme",
"devDependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/fragment-matcher": "3.2.1",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.10",
"@graphql-codegen/typescript-operations": "2.3.7",
"@graphql-codegen/typescript-react-apollo": "3.2.13",
"@graphql-codegen/typescript-resolvers": "2.6.3",
"concurrently": "^7.1.0"
}
}