-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
75 lines (75 loc) · 2.5 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
{
"name": "mayoor",
"description": "",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier ./src -w",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"postinstall": "npm -s run generate",
"generate": "npm -s run generate:prisma && npm -s run generate:nexus && npm -s run generate:apollo",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --project tsconfig.nexus.json --transpile-only src/backend/schema.ts",
"generate:apollo": "graphql-codegen --config codegen.yml",
"database:push": "prisma db push",
"database:seed": "ts-node --project tsconfig.nexus.json --transpile-only ./prisma/seed.ts",
"start:full": "npm run database:migrate && npm run database:seed && npm run start",
"extract:translations": "i18next"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.8",
"@graphql-codegen/near-operation-file-preset": "^2.4.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-react-apollo": "3.3.3",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/react": "^18.0.17",
"@types/styled-components": "^5.1.26",
"@vercel/node": "^1.15.2",
"eslint": "^8.22.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unused-imports": "^2.0.0",
"i18next-parser": "^8.11.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prisma": "^3.15.2",
"tsconfig-paths": "^4.1.0"
},
"dependencies": {
"@ant-design/cssinjs": "^1.18.2",
"@ant-design/icons": "^5.2.6",
"@apollo/client": "^3.6.9",
"@prisma/client": "^3.15.2",
"antd": "^5.12.5",
"apollo-server-micro": "^3.10.1",
"bcrypt": "^5.0.1",
"cookies-next": "^2.1.1",
"formik": "^2.2.9",
"graphql": "^16.6.0",
"graphql-scalars": "^1.18.0",
"i18next-chained-backend": "^3.1.0",
"i18next-http-backend": "^1.4.1",
"i18next-localstorage-backend": "^3.1.3",
"jsonwebtoken": "^9.0.2",
"micro": "^9.4.1",
"next": "^14.0.4",
"next-i18next": "^15.1.1",
"nexus": "^1.3.0",
"nexus-prisma": "^0.35.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"yup": "^0.32.11"
}
}