-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "renofa-parking-web",
"private": true,
"scripts": {
"local": "export NEXT_PUBLIC_USE_FIREBASE_EMULATOR=true && next dev",
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"inspect": "npm-run-all -l -c inspect:*",
"inspect:lint": "next lint --dir src",
"inspect:format": "prettier --check .",
"inspect:test": "jest",
"fix": "npm-run-all -l -c fix:*",
"fix:lint": "next lint --dir src --fix",
"fix:format": "yarn inspect:format --write",
"prepare": "husky install",
"emu:start": "firebase emulators:start --import=./data --only auth,firestore",
"emu:export": "firebase emulators:export --force ./data/"
},
"dependencies": {
"@chakra-ui/icon": "^3.0.13",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"firebase": "^9.6.6",
"framer-motion": "^4",
"next": "12.0.2",
"next-seo": "^5.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-iframe": "^1.8.0",
"swr": "^1.2.2"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/gtag.js": "^0.0.8",
"@types/jest": "^27.0.3",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"eslint": "7",
"eslint-config-next": "12.0.2",
"eslint-config-prettier": "^8.3.0",
"firebase-tools": "^10.2.2",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"prettier": "2.4.1",
"ts-jest": "^27.0.7",
"typescript": "4.4.4"
}
}