-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.43 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
{
"name": "reshared",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"schema": "graphql-codegen",
"schema-watch": "dotenv -c local -- graphql-codegen --watch",
"lint": "next lint",
"compile-emails": "mjml 'src/emails/*.mjml' -o src/emails/compiled",
"cypress": "cypress open",
"cypress-run": "cypress run"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"singleQuote": true,
"bracketSameLine": true,
"trailingComma": "all"
},
"dependencies": {
"@ant-design/compatible": "^5.1.2",
"@ant-design/pro-components": "^2.6.12",
"@ant-design/pro-layout": "^7.16.8",
"@apollo/client": "^3.6.10",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@next/bundle-analyzer": "^13.4.13",
"@nhost/apollo": "^7.1.5",
"@nhost/nextjs": "^2.1.19",
"@nhost/react": "^3.5.5",
"@nhost/react-apollo": "^12.0.5",
"@sentry/nextjs": "^7.14.1",
"abortcontroller-polyfill": "^1.7.3",
"antd": "^5.8.2",
"antd-img-crop": "^4.2.5",
"apollo-server-micro": "^3.1.2",
"bcryptjs": "^2.4.3",
"clsx": "^2.0.0",
"cookies-next": "^4.2.1",
"dayjs": "^1.11.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"graphql": "^16.5.0",
"graphql-scalars": "^1.10.0",
"graphql-tag": "^2.12.5",
"graphql-ws": "^5.11.2",
"http-proxy-middleware": "^2.0.1",
"joi": "^17.6.2",
"jsonwebtoken": "^9.0.1",
"lodash-es": "^4.17.21",
"micro": "^10.0.1",
"mjml": "^4.13.0",
"nanoid": "^4.0.0",
"next": "^13.4.13",
"node-fetch": "^3.0.0",
"nodemailer": "^6.8.0",
"nprogress": "^0.2.0",
"pg": "^8.7.1",
"postmark": "^3.0.19",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^18.2.0",
"react-jss": "^10.7.1",
"sass": "^1.55.0",
"sharp": "^0.32.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/fragment-matcher": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/named-operations-object": "^2.2.1",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.2.14",
"@types/bcryptjs": "^2.4.2",
"@types/js-cookie": "^3.0.2",
"@types/lodash-es": "^4.17.6",
"@types/node": "^20.4.9",
"@types/nodemailer": "^6.4.6",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"cross-env": "^7.0.3",
"cypress": "^12.17.3",
"cypress-mailhog": "^2.2.0",
"eslint": "^8.24.0",
"eslint-config-next": "13.4.13",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^3.0.1",
"raw-loader": "^4.0.2",
"typescript": "^5.1.6"
}
}