-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
69 lines (69 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "setwithfriends",
"type": "module",
"version": "1.0.0",
"repository": "https://github.com/ekzhang/setwithfriends",
"license": "MIT",
"description": "Online, real-time set application hosted on Firebase.",
"keywords": [],
"main": "src/index.js",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.2.1",
"@mui/styles": "^6.2.1",
"@react-spring/web": "^9.7.5",
"@stripe/stripe-js": "^5.4.0",
"bad-words": "^4.0.0",
"chart.js": "^4.4.7",
"clone-deep": "^4.0.1",
"clsx": "^2.1.1",
"firebase": "^11.1.0",
"moment": "^2.30.1",
"project-name-generator": "^2.1.9",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.0",
"use-sound": "^4.0.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@google-cloud/pubsub": "^4.9.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"prettier": "3.4.2",
"vite": "^6.0.5",
"vitest": "^2.1.8"
},
"scripts": {
"dev": "vite dev",
"develop": "node rundev.js",
"build:dev": "vite build --mode development",
"build:preview": "vite build --mode preview",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src",
"test": "vitest",
"format": "prettier --write ."
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": "20",
"npm": "10"
}
}