-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "tequiniela-oscares",
"private": false,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"preview": "vite preview",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"emulators:start": "firebase emulators:start --import=./seed --export-on-exit",
"emulators:seed:testing": "rm -rf ./seed && cp -r seed.testing seed"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"firebase": "^9.17.1",
"framer-motion": "^9.0.2",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-button": "^0.7.2",
"react-masonry": "^1.0.7",
"react-plock": "^3.1.0",
"react-responsive-masonry": "^2.2.0",
"react-router-dom": "^6.8.1",
"reactfire": "^4.2.2",
"recoil": "^0.7.6"
},
"devDependencies": {
"@types/firebase": "^3.2.1",
"@types/node": "^18.14.0",
"@types/ramda": "^0.28.23",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-responsive-masonry": "^2.1.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tsc": "^2.0.0",
"prettier": "^2.1.2",
"typescript": "^4.9.5",
"vite": "^4.1.0"
}
}