-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
55
56
57
58
{
"name": "cribbage",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"css": "yarn tailwindcss -i ./src/index.css -o ./dist/index.css --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@google-cloud/firestore": "^6.4.1",
"animejs": "^3.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase": "^9.14.0",
"firebase-functions": "^4.1.0",
"firebaseui": "^6.0.2",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-particles": "^2.8.0",
"react-router-dom": "^6.4.4",
"tsparticles": "^2.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^13.4.0",
"@types/animejs": "^3.1.6",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.4",
"vite": "^3.2.3"
},
"description": "the family game",
"main": "main.tsx",
"author": "ChrisCoastal",
"license": "MIT"
}