This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
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.18 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.18 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": "lendme",
"version": "0.1.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format:fix": "prettier --write 'src/**/*.{ts,tsx}'",
"format:validate": "prettier --check 'src/**/*.{ts,tsx}'",
"type-check": "tsc",
"typeorm": "ts-node --project tsconfig.typeorm.json -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"typeorm:sync": "yarn typeorm schema:sync -d src/features/api/data-source.ts"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.4.3",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.4",
"@graphql-tools/schema": "^9.0.10",
"@graphql-tools/utils": "^9.1.1",
"@hookform/resolvers": "^2.9.10",
"@mapbox/mapbox-gl-geocoder": "^5.0.1",
"apollo-server-micro": "^3.10.3",
"class-validator": "^0.13.2",
"cookies-next": "^2.1.1",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"framer-motion": "^7.6.1",
"geolocation-utils": "^1.2.5",
"graphql": "^16.6.0",
"graphql-scalars": "^1.19.0",
"jose": "^4.11.2",
"mapbox-gl": "^2.10.0",
"micro": "^9.4.1",
"mysql": "^2.18.1",
"next": "12.3.1",
"next-graphql-loader": "^1.0.1",
"nodemailer": "^6.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.38.0",
"react-icons": "^4.6.0",
"react-map-gl": "^7.0.19",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.10",
"yup": "^0.32.11"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/mapbox__mapbox-gl-geocoder": "^4.7.3",
"@types/node": "18.11.0",
"@types/nodemailer": "^6.4.7",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/webpack-env": "^1.18.0",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "4.8.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}