-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.61 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
{
"name": "poops",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/codersforcauses/poops.git"
},
"author": "Coders for Causes",
"license": "MIT",
"bugs": {
"url": "https://github.com/codersforcauses/poops/issues"
},
"homepage": "https://github.com/codersforcauses/poops#readme",
"scripts": {
"dev": "next dev",
"dev:emu": "yarn firebase emu & (sleep 15 && NEXT_PUBLIC_EMULATOR=true yarn dev)",
"build": "next build",
"start": "next start",
"start:emu": "yarn firebase emu & (sleep 15 && NEXT_PUBLIC_EMULATOR=true yarn start)",
"analyse": "ANALYZE=true next build",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint src",
"typecheck": "tsc --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install",
"firebase": "cd firebase/functions && yarn"
},
"dependencies": {
"@babel/core": "7.0.0",
"@heroicons/react": "2.0.13",
"@next/bundle-analyzer": "13.0.5",
"@tanstack/react-query": "4.20.4",
"@tanstack/react-query-devtools": "4.20.4",
"@types/react-phone-number-input": "3.0.14",
"class-variance-authority": "0.3.0",
"firebase": "9.14.0",
"firebase-admin": "11.4.1",
"jotai": "1.12.0",
"next": "12.3.4",
"next-pwa": "5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.39.5",
"react-phone-number-input": "^3.2.16",
"react-select": "5.6.1",
"sharp": "0.31.2",
"webpack": "5.76.0",
"zod": "3.20.6"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@testing-library/react": "13.4.0",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"autoprefixer": "10.4.13",
"critters": "0.0.16",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.2",
"lint-staged": "13.0.4",
"postcss": "8.4.19",
"prettier": "2.8.0",
"prettier-plugin-tailwindcss": "0.1.13",
"tailwind-styled-components": "2.2.0",
"tailwindcss": "3.2.4",
"typescript": "4.9.3",
"yarn-upgrade-all": "0.7.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}