-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.72 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": "be-friends",
"version": "1.9.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"commit": "cz",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix ./**/*.{ts,js,jsx,tsx}",
"format": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,json}'",
"format:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"lint-staged": "npm run format && npm run lint",
"postinstall": "husky install",
"generate": "prisma generate",
"migrate": "prisma migrate",
"semantic-release": "semantic-release"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.1",
"@chakra-ui/react": "^2.1.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@firebase/storage": "^0.9.8",
"@googlemaps/react-wrapper": "^1.1.35",
"@reduxjs/toolkit": "^1.8.2",
"@types/google.maps": "^3.49.2",
"@types/react-table": "^7.7.12",
"axios": "^0.27.2",
"chakra-react-select": "^4.2.2",
"firebase": "^9.8.4",
"framer-motion": "^6",
"js-cookie": "^3.0.1",
"moment": "^2.29.3",
"next": "12.1.6",
"next-i18next": "^11.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.32.0",
"react-image-gallery": "^1.2.9",
"react-redux": "^8.0.2",
"react-table": "^7.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/google.maps": "^3.49.2",
"@types/js-cookie": "^3.0.2",
"@types/node": "17.0.34",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/react-image-gallery": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.3",
"typescript": "4.6.4"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/cjtim/be-friends.git"
},
"publishConfig": {
"access": "restricted"
},
"release": {
"branches": [
"master"
]
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
]
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}