forked from MetaFam/TheGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 4.12 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@metafam/the-game",
"version": "0.2.0",
"license": "GPL-3.0",
"engines": {
"node": ">=16"
},
"private": true,
"scripts": {
"update-schema": "env-cmd -x get-graphql-schema -h x-hasura-admin-secret=\\$HASURA_GRAPHQL_ADMIN_SECRET http://localhost:8080/v1/graphql > schema.graphql",
"docker:start": "docker-compose up -d",
"docker:build": "docker-compose up --build -d",
"docker:stop": "docker-compose down",
"docker:clean": "docker-compose down -v",
"docker:dev": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose up --build",
"build": "lerna run build",
"web:dev": "lerna run dev --parallel --scope @metafam/web --include-dependencies",
"web:build": "lerna run build --scope @metafam/web --include-dependencies --stream",
"backend:dev": "lerna run dev --parallel --scope @metafam/backend",
"backend:build": "lerna run build --scope @metafam/backend --include-dependencies --stream",
"hasura": "hasura --project ./hasura",
"hasura:console": "yarn hasura console --no-browser --skip-update-check",
"hasura:migrate:init": "yarn hasura migrate create \"init\" --from-server",
"hasura:seed-db": "node hasura/seed-db.mjs",
"generate": "lerna run generate --parallel --",
"test": "lerna run test --parallel --",
"test:full": "yarn lint && yarn typecheck && yarn test",
"clean": "lerna clean",
"clean:full": "CMD='rm -rf node_modules/ packages/*/node_modules/ packages/*/dist/ packages/web/.next/' && echo \"$CMD\" && eval $CMD",
"format": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md}\"",
"lint": "eslint --ignore-path .gitignore \"./packages/**/*.{ts,tsx,js,jsx}\"",
"typecheck": "lerna run typecheck",
"prepare": "lerna run prepare && husky install",
"precommit": "lerna run --concurrency 1 --stream precommit && yarn lint-staged",
"prepush": "yarn typecheck",
"discord-bot": "yarn --cwd packages/discord-bot/",
"backend": "yarn --cwd packages/backend/",
"utils": "yarn --cwd packages/utils/",
"web": "yarn --cwd packages/web/",
"ds": "yarn --cwd packages/design-system/",
"release": "standard-version"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@graphql-codegen/add": "3.1.1",
"@graphql-codegen/cli": "2.7.0",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-codegen/typescript-graphql-request": "4.3.7",
"@graphql-codegen/typescript-operations": "2.3.2",
"@graphql-codegen/typescript-react-apollo": "3.2.8",
"@graphql-codegen/typescript-resolvers": "2.5.2",
"@graphql-codegen/typescript-urql": "3.5.3",
"@types/jest": "^29.2.1",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"caniuse-lite": "^1.0.30001383",
"concurrently": "7.0.0",
"env-cmd": "10.1.0",
"eslint": "8.10.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"get-graphql-schema": "2.1.2",
"graphql": "16.3.0",
"hasura-cli": "1.3.3",
"husky": "7.0.4",
"jest": "^29.2.2",
"lerna": "4.0.0",
"lint-staged": "12.3.5",
"prettier": "2.7.1",
"standard-version": "9.3.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"wait-on": "6.0.1"
},
"resolutions": {
"typescript": "4.8.4",
"@types/react": "18.0.21",
"@types/node": "18.11.4",
"@emotion/react": "11.10.4",
"@emotion/cache": "11.10.3",
"react-select": "5.6.0",
"@ceramicnetwork/common": "2.10.0",
"@ethersproject/abstract-provider": "5.7.0"
},
"browserslist": [
"defaults",
"not IE 11"
],
"dependencies": {
"tslib": "^2.4.0",
"uuid": "8.3.2"
}
}