-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
{
"name": "not-wordle",
"version": "1.0.1",
"homepage": "/",
"private": false,
"dependencies": {
"@socket.io/admin-ui": "^0.2.0",
"axios": "^0.26.0",
"express": "^4.17.3",
"express-rate-limit": "^6.2.0",
"firebase": "^9.6.7",
"gsap": "^3.9.1",
"jquery": "^3.6.0",
"react": "^17.0.2",
"react-adsense": "^0.1.0",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-firebase-hooks": "^5.0.2",
"react-hooks-use-modal": "^2.1.0",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"react-timer-hook": "^3.0.5",
"sass": "^1.49.7",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "vite",
"host": "vite --host",
"build": "vite build",
"preview": "vite preview",
"githubdeploy": "npm run build && gh-pages -d build",
"netlifydeploy": "npm run build && netlify deploy --prod",
"server": "nodemon server/server.js",
"heroku": "git add . && git commit -m 'heroku' && git push heroku master",
"autoprefixer": "postcss src/*.css --use autoprefixer -d build/",
"dura": "dura watch && dura serve"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jquery": "^3.5.11",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"gh-pages": "^3.2.3",
"nodemon": "^2.0.15",
"postcss-cli": "^9.1.0",
"vite": "^2.8.0",
"vite-plugin-pwa": "^0.11.13"
}
}