-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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": "gla-firebase",
"version": "1.2.2",
"type": "module",
"description": "GLA Firebase",
"main": "src/main.js",
"repository": "git@github.com:merogersdev/gla-firebase.git",
"author": "Michelle Rogers <michelle@merogers.dev>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "docker compose up -d",
"test": "vitest",
"test:auto": "vitest --run",
"lint": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^5.24.1",
"@tanstack/react-query-devtools": "^5.24.1",
"firebase": "^10.8.0",
"framer-motion": "^11.0.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.1",
"react-toastify": "^10.0.4",
"sass": "^1.71.1"
},
"devDependencies": {
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"vite": "^4.3.9",
"vitest": "^1.2.2"
}
}