blob: 6dd097890a20fd7cf286a59da8a77871499cd6d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "nestclientstarterapp-client",
"version": "1.0.0",
"description": "",
"scripts": {
"watch": "parcel watch ./index.js --dist-dir ../static",
"build": "parcel build ./index.js --dist-dir ../static"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.0",
"parcel": "^2.0.1",
"postcss": "^8.3.11",
"tailwindcss": "^2.2.19"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "6",
"socket.io-client": "^4.4.1"
}
}
|