-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 894 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 894 Bytes
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
{
"name": "react-websocket-components",
"version": "1.0.0",
"source": "index.html",
"license": "MIT",
"scripts": {
"dev": "concurrently \"yarn front\" \"yarn server\"",
"front": "parcel index.html --no-source-maps",
"server": "node ./server.js",
"test": "ava test/test.js",
"build": "parcel build --no-source-maps"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.5",
"babel-plugin-transform-glob-import": "^1.0.1",
"components": "^0.1.0",
"example": "^0.0.0",
"marked": "^2.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize-html": "^2.3.2",
"ws": "^7.4.3"
},
"devDependencies": {
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8",
"ava": "^3.15.0",
"concurrently": "^6.0.0",
"nodemon": "^2.0.7",
"parcel": "^2.0.1"
}
}