-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "wedding-invitation",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"prettier": "prettier {*,src/*,src/**/*} --write --ignore-unknown",
"serve": "firebase emulators:start --only functions,hosting",
"shell": "firebase functions:shell",
"deploy": "firebase deploy --only functions,hosting --non-interactive",
"logs": "firebase functions:log"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.7",
"@types/react-image-gallery": "^1.2.0",
"@types/styled-components": "^5.1.25",
"@vercel/analytics": "^0.1.11",
"date-fns": "^2.29.3",
"firebase": "9.16.0",
"next": "12.2.2",
"react": "18.2.0",
"react-day-picker": "^8.5.1",
"react-dom": "18.2.0",
"react-image-gallery": "^1.2.11",
"react-is": "16.8.0",
"styled-components": "^5.3.5",
"styled-reset": "^4.4.2"
},
"devDependencies": {
"@types/navermaps": "^3.0.17",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"prettier": "^2.6.2",
"typescript": "4.7.4"
},
"lint-staged": {
"*.(tsx|ts)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}