-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "socketcluster-tester",
"version": "1.0.0",
"description": "A testing tool for socketcluster",
"main": "dist/index.html",
"scripts": {
"parcel": "parcel src/index.html --dist-dir build",
"watch": "parcel watch src/index.html --out-file index.html -d build/",
"dist": "parcel build src/index.html --no-source-maps"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"react-hot-loader/babel",
"@babel/plugin-transform-runtime"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"socketcluster-client": "^16.0.1",
"tailwindcss": "^1.4.6"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"miragejs": "^0.1.40",
"parcel": "^2.0.0-beta.1",
"react-hot-loader": "^4.12.21",
"sass": "^1.26.9"
},
"alias": {
"react-dom": "@hot-loader/react-dom"
}
}