-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "thanks-web-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"enableWebFrameworks": "firebase experiments:enable webframeworks",
"lint": "next lint --dir src",
"lint:fix": "next lint --dir src --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'"
},
"dependencies": {
"@types/node": "18.11.18",
"@types/react": "^18.3.1",
"@types/react-dom": "18.0.10",
"autoprefixer": "^10.4.13",
"eslint": "8.32.0",
"eslint-config-next": "13.1.4",
"firebase-admin": "^11.10.1",
"moment": "^2.29.4",
"next": "^14.2.3",
"postcss": "^8.4.21",
"postcss-nested": "^6.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-responsive-carousel": "^3.2.23",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4"
},
"devDependencies": {
"@types/gtag.js": "^0.0.18",
"@types/jest": "^29.5.12",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-tailwindcss": "^3.8.2",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
"ts-jest": "^29.2.4"
},
"resolutions": {
"@types/react": "^18.3.1"
}
}