-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 971 Bytes
/
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
{
"name": "webapp",
"version": "1.0.0",
"description": "Web Application Sample",
"scripts": {
"start": "node app.js",
"build": "parcel build ./src/index.html",
"dev": "parcel watch ./src/index.html"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version"
],
"hintConfig": {
"extends": [
"development"
],
"hints": {
"detect-css-reflows/layout": "off",
"detect-css-reflows/composite": "off",
"detect-css-reflows/paint": "off"
}
},
"alias": {
"socket.io-client": "socket.io/client-dist/socket.io"
},
"type": "module",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"serve-favicon": "^2.5.0",
"socket.io": "^4.5.4"
},
"devDependencies": {
"parcel": "^2.10.3",
"process": "^0.11.10"
}
}