-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.33 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.33 KB
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
{
"name": "eztimate",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run codegen",
"dev": "next dev",
"prebuild": "npm run codegen",
"build": "next build",
"start": "next start",
"eslint": "npx eslint \"**/*.{ts,tsx}\"",
"eslint:fix": "npx eslint --fix \"**/*.{ts,tsx}\"",
"prettier": "npx prettier --check \"**/*.{ts,tsx,css,json,js,jsx}\"",
"prettier:write": "npx prettier --write \"**/*.{ts,tsx,json}\"",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.4.9",
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@harelpls/use-pusher": "^7.2.1",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"@types/lodash": "^4.14.172",
"apollo-server-micro": "^3.1.2",
"aws-sdk": "^2.900.0",
"classnames": "^2.2.6",
"cookies": "^0.8.0",
"formidable": "^1.2.2",
"graphql": "^15.5.1",
"js-cookie": "^3.0.0",
"lodash": "^4.17.21",
"mongodb": "^4.1.1",
"next": "^11.0.1",
"next-absolute-url": "^1.2.2",
"pusher": "^5.0.0",
"pusher-js": "^7.0.3",
"react": "17.0.2",
"react-avatar-editor": "^12.0.0",
"react-dom": "17.0.2",
"react-dropzone": "^11.4.2"
},
"devDependencies": {
"@aws-cdk/aws-s3": "^1.102.0",
"@aws-cdk/core": "^1.102.0",
"@emotion/babel-plugin": "^11.3.0",
"@graphql-codegen/cli": "2.1.1",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "^2.1.1",
"@graphql-codegen/typescript-operations": "^2.1.1",
"@graphql-codegen/typescript-react-apollo": "^3.1.1",
"@graphql-codegen/typescript-resolvers": "^2.1.2",
"@graphql-codegen/visitor-plugin-common": "^2.1.1",
"@types/cookies": "^0.7.6",
"@types/formidable": "^1.2.4",
"@types/graphql": "^14.5.0",
"@types/js-cookie": "^2.2.7",
"@types/mongodb": "^4.0.7",
"@types/react": "17.0.14",
"@types/react-avatar-editor": "^10.3.6",
"@types/react-dropzone": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"aws-cdk": "^1.102.0",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.2.1",
"typescript": "4.3.5"
}
}