forked from MetaFam/TheGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.16 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
{
"name": "@metafam/the-game",
"version": "0.1.0",
"license": "GPL-3.0",
"engines": {
"node": ">=12"
},
"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 --build -d",
"docker:stop": "docker-compose down",
"docker:clean": "docker-compose down -v",
"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 --include-dependencies",
"backend:build": "lerna run build --scope @metafam/backend --include-dependencies --stream",
"hasura": "hasura --project ./hasura",
"hasura:console": "yarn hasura console -- --no-browser",
"hasura:migrate:init": "yarn hasura migrate create \"init\" -- --from-server",
"test": "lerna run test --parallel --",
"generate": "lerna run generate --parallel --",
"test:full": "yarn lint && yarn typecheck && yarn test",
"clean": "lerna clean",
"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",
"precommit": "lerna run --concurrency 1 --stream precommit",
"prepush": "yarn typecheck",
"backend": "yarn --cwd packages/backend/",
"utils": "yarn --cwd packages/utils/",
"web": "yarn --cwd packages/web/",
"ds": "yarn --cwd packages/design-system/"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@graphql-codegen/add": "2.0.1",
"@graphql-codegen/cli": "1.17.10",
"@graphql-codegen/introspection": "1.18.0",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-graphql-request": "2.0.1",
"@graphql-codegen/typescript-operations": "1.17.13",
"@graphql-codegen/typescript-react-apollo": "2.0.7",
"@graphql-codegen/typescript-resolvers": "1.17.10",
"@graphql-codegen/typescript-urql": "2.0.2",
"@types/node": "14.11.8",
"@types/react": "16.9.52",
"@types/react-dom": "16.9.8",
"@types/react-select": "3.0.22",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"env-cmd": "10.1.0",
"eslint": "7.14.0",
"eslint-config-airbnb-typescript": "9.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-typescript": "2.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.1.2",
"eslint-plugin-simple-import-sort": "5.0.3",
"get-graphql-schema": "2.1.2",
"graphql": "15.4.0",
"hasura-cli": "1.3.3",
"husky": "4.3.0",
"jest": "26.6.3",
"lerna": "3.22.1",
"lint-staged": "10.4.1",
"prettier": "2.1.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"tsdx": "0.13.3",
"typescript": "4.1.3"
},
"resolutions": {
"bcrypto": "5.2.0"
}
}