-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
41
42
{
"name": "game-server-v0",
"version": "0.1.0",
"description": "off-chain game server for Adventure Cards",
"main": "dist/index.js",
"repository": "https://github.com/Adventure-Cards/game-server-v0.git",
"license": "MIT",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf dist build",
"build": "yarn clean && tsc -p tsconfig.json && graphql-codegen",
"dev": "NODE_OPTIONS='-r dotenv/config' ts-node src/index.ts",
"start": "node dist/src/index.js",
"gs": "node -r dotenv/config scripts/gs.js && npx prettier --write data/",
"codegen": "graphql-codegen"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.1",
"@graphql-codegen/typescript": "^2.2.4",
"@graphql-codegen/typescript-resolvers": "^2.3.2",
"@types/express": "^4.17.13",
"@types/google-spreadsheet": "^3.1.5",
"@types/node": "^16.10.3",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"google-spreadsheet": "^3.1.15",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"apollo-server-core": "^3.4.0",
"apollo-server-express": "^3.4.0",
"express": "^4.17.1",
"graphql": "^15.6.1",
"graphql-request": "^3.5.0",
"socket.io": "^4.2.0",
"uuid": "^8.3.2"
}
}