-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.42 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
{
"name": "lets_talk",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "cross-env FIREBASE_AUTH_EMULATOR_HOST=localhost:9909 next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"emulators": "yarn firebase emulators:start",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/poppins": "^4.5.2",
"@fontsource/roboto": "^4.5.3",
"@hookform/resolvers": "^2.8.8",
"@next/bundle-analyzer": "^12.1.0",
"@react-hook/resize-observer": "^1.2.6",
"axios": "^0.26.1",
"emoji-regex": "^10.2.1",
"firebase": "^9.6.8",
"firebase-admin": "^10.0.2",
"firebase-tools": "^12.4.3",
"framer-motion": "^6",
"next": "12.1.0",
"next-compose-plugins": "^2.2.1",
"next-progress": "^2.2.0",
"next-pwa": "git+https://github.com/luisspassos/next-pwa.git",
"nookies": "^2.5.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.27.1",
"react-icons": "^4.3.1",
"react-virtual": "^2.10.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.16.7",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@testing-library/dom": "^8.11.3",
"@testing-library/react": "^12.1.4",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-loader": "^9.1.2",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cypress": "12.17.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks-addons": "^0.3.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.2",
"webpack": "^5.86.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}