-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
134 lines (134 loc) · 4.75 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@split-monorepo/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx build",
"check-branch-name": "chmod 755 tools/scripts/check_branch_naming.sh && sh tools/scripts/check_branch_naming.sh",
"codegen:graphql": "graphql-codegen --config ./tools/graphql/graphql-codegen.ts",
"db-migrate:dev": "dotenv -e ./apps/server/.env.development -- prisma migrate dev --schema libs/prisma/schema.prisma",
"db-migrate:dev:create-only": "dotenv -e ./apps/server/.env.development -- prisma migrate dev --schema libs/prisma/schema.prisma --create-only",
"db-migrate:dev:status": "dotenv -e ./apps/server/.env.development -- prisma migrate status --schema libs/prisma/schema.prisma",
"kill:all": "chmod 755 tools/scripts/kill_local_apps.sh && sh tools/scripts/kill_local_apps.sh",
"lint:all": "nx run-many --target=lint --all --parallel=3",
"lint-staged": "lint-staged --relative",
"prepare": "npm-run-all prepare:*",
"prepare:husky": "husky install",
"prepare:commit-template": "git config commit.template .gitmessage.txt",
"prepare:prisma": "prisma generate --schema libs/prisma/schema.prisma",
"start": "nx serve",
"start:all": "docker-compose up -d && yarn kill:all && nx run-many --target=serve --all --parallel=5",
"test:all": "nx run-many --target=test --all"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@commitlint/config-nx-scopes": "^18.3.0",
"@faker-js/faker": "^7.6.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@next/eslint-plugin-next": "^13.5.6",
"@nx/eslint": "18.0.4",
"@nx/eslint-plugin": "18.0.4",
"@nx/jest": "18.0.4",
"@nx/js": "18.0.4",
"@nx/nest": "^18.0.4",
"@nx/next": "18.0.4",
"@nx/node": "18.0.4",
"@nx/react": "18.0.4",
"@nx/web": "18.0.4",
"@nx/webpack": "18.0.4",
"@nx/workspace": "18.0.4",
"@swc-node/register": "~1.8.0",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.85",
"@swc/helpers": "~0.5.2",
"@testing-library/react": "14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/jest": "^29.4.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "~18.16.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/injected-wallets": "^2.10.11",
"@web3-onboard/react": "^2.8.13",
"autoprefixer": "10.4.13",
"babel-jest": "^29.4.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"eslint": "~8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"nx": "18.0.4",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.3.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@apollo/client": "3.7.11",
"@apollo/server": "^4.9.5",
"@nestjs/apollo": "^12.0.9",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.0.2",
"@nestjs/graphql": "^12.0.9",
"@nestjs/jwt": "^10.1.1",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"@prisma/client": "^5.5.2",
"@prisma/extension-read-replicas": "^0.3.0",
"apollo-server-express": "^3.10.1",
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "0.14.0",
"clsx": "^2.0.0",
"cross-fetch": "^4.0.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"ethers": "5.6.4",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-scalars": "^1.22.4",
"next": "14.0.4",
"passport": "^0.6.0",
"passport-headerapikey": "^1.2.2",
"passport-jwt": "^4.0.1",
"prisma": "^5.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "^5.7.7",
"react-toastify": "^9.1.3",
"react-use": "^17.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"siwe": "^2.1.4",
"tslib": "^2.3.0",
"universal-cookie": "^6.1.1",
"wagmi": "^1.4.8"
}
}