-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.03 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
{
"name": "places",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"codegen": "apollo client:codegen --target typescript --localSchemaFile schema.gql --outputFlat --includes \"{pages,src}/gql/**\" --excludes \"src/generated/**\" src/generated",
"codegen:watch": "yarn codegen --watch",
"db:init": "yarn prisma init",
"db:generate": "yarn prisma generate",
"db:migrate:new": "yarn prisma migrate save --experimental",
"db:migrate:up": "yarn prisma migrate up --experimental",
"db:migrate:down": "yarn prisma migrate down --experimental",
"postinstall": "husky install & yarn db:generate"
},
"husky": {
"hooks": {
"pre-commit": "yarn tsc"
}
},
"dependencies": {
"@apollo/client": "^3.3.7",
"@hookform/resolvers": "1.3.0",
"@prisma/client": "^4.6.1",
"apollo-server-micro": "^2.19.2",
"class-validator": "^0.13.1",
"cloudinary": "^1.24.0",
"cloudinary-react": "^1.6.8",
"cookie": "^0.4.1",
"firebase": "^8.2.4",
"firebase-admin": "^9.4.2",
"framer-motion": "^3.2.2-rc.1",
"geolib": "^3.3.1",
"js-cookie": "^2.2.1",
"next": "10.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-firebaseui": "^4.1.0",
"react-hook-form": "^6.14.2",
"react-icons": "^4.1.0",
"react-map-gl": "5.2.10",
"react-select": "^4.0.2",
"react-toast-notifications": "^2.4.0",
"reflect-metadata": "^0.1.13",
"sass": "^1.32.5",
"type-graphql": "^1.1.1",
"use-google-maps-script": "^0.1.2",
"use-places-autocomplete": "^1.8.1",
"yup": "^0.32.8"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@prisma/cli": "2.12.0",
"@types/cookie": "^0.4.0",
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-map-gl": "^5.2.9",
"@types/react-select": "^4.0.8",
"@types/react-toast-notifications": "^2.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"apollo": "^2.32.1",
"autoprefixer": "^10.2.3",
"babel-eslint": "^10.1.0",
"babel-plugin-parameter-decorator": "^1.0.16",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.8",
"postcss": "^8.2.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prisma": "^4.6.1",
"tailwindcss": "^2.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "^4.1.3"
}
}