-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
103 lines (103 loc) · 3.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "blymp-io",
"version": "1.0.0",
"description": "Transfer files between devices.",
"main": "src/server/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "node src/server/index.js",
"heroku-prebuild": "npm install --dev",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "eslint --fix src"
},
"engines": {
"node": "14.x"
},
"author": "Bennett Hollstein",
"license": "MIT",
"dependencies": {
"@fontsource/montserrat": "^4.5.7",
"@openfonts/gothic-a1_latin": "^1.44.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.0",
"autoprefixer": "^10.4.5",
"babel-polyfill": "^6.26.0",
"compression": "^1.7.4",
"debug": "^4.1.1",
"express": "^4.16.3",
"file-saver": "^2.0.2",
"helmet": "^3.21.3",
"ionicons": "^5.0.1",
"pako": "^2.0.3",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"prop-types": "^15.7.2",
"rc-progress": "^2.5.2",
"react": "^16.5.2",
"react-code-input": "^3.9.0",
"react-dom": "^16.5.2",
"react-faq-component": "^1.0.5",
"react-ionicons": "^3.0.0",
"react-router-dom": "^5.1.2",
"react-transition-group": "^4.3.0",
"regenerator-runtime": "^0.13.7",
"rxjs": "^6.5.4",
"simple-peer": "^9.6.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"source-map-loader": "^2.0.0",
"tailwindcss": "^3.0.24",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"vanilla-cookieconsent": "^2.8.0",
"web-vitals": "^0.2.4",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-google-analytics": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/debug": "^4.1.5",
"@types/file-saver": "^2.0.1",
"@types/pako": "^1.0.1",
"@types/simple-peer": "^9.6.1",
"@types/socket.io-client": "^1.4.35",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.0.0",
"copy-webpack-plugin": "^6.0.0",
"css-loader": "^5.0.1",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0",
"nodemon": "^1.17.3",
"process": "^0.11.10",
"style-loader": "^2.0.0",
"url-loader": "^4.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.0.0-beta.0",
"workbox-webpack-plugin": "^6.0.2"
}
}