-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.11 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
{
"name": "mpv-control",
"version": "1.0.0",
"description": "A web app for controlling mpv media player using websockets.",
"main": "index.js",
"scripts": {
"start": "node build/server/index.js",
"dev": "concurrently --kill-others 'webpack-dev-server --inline --hot --progress' 'nodemon'",
"build": "tsc && rm -rf build/client/ && webpack",
"client:analyze": "rm -rf build/client/ && webpack -p && source-map-explorer 'build/client/*.js'"
},
"keywords": [],
"author": "graham.bull@gmail.com",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"autoprefixer": "^10.0.1",
"classnames": "^2.2.6",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^2.0.0",
"express": "^4.17.1",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.3",
"nodemon": "^2.0.4",
"postcss": "^8.1.0",
"postcss-loader": "^4.0.2",
"purgecss-webpack-plugin": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.2.1",
"tailwindcss": "^1.8.10",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/express": "^4.17.8",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^7.10.0",
"eslint-config-jyutzio": "^0.1.8",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "^2.1.2",
"source-map-explorer": "^2.5.0",
"typescript": "^4.0.3",
"webpack-dev-server": "^3.11.0"
}
}