-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "imboard",
"version": "1.0.0",
"description": "A website to play all your favorite card and board games.",
"main": "index.js",
"scripts": {
"build": "vite build",
"dev-client": "vite",
"dev-server": "cross-env NODE_ENV=development nodemon index.js",
"dev-start": "concurrently \"npm run dev-server\" \"npm run dev-client\"",
"start": "npm install && npm run build && cross-env NODE_ENV=production node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.8.3",
"@vitejs/plugin-react": "^4.3.4",
"bootstrap": "^5.2.0",
"concurrently": "^7.3.0",
"config": "^3.3.7",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"reactstrap": "^9.1.2",
"sass": "^1.53.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"vite": "^6.1.0"
},
"devDependencies": {
"nodemon": "^2.0.19"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}