-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.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
{
"name": "vlc-remote",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"app": "node dist/server/bundle.js"
},
"author": "tomrf1",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-ws": "^3.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.12.2",
"webpack-cli": "^4.3.1",
"webpack-merge": "^5.7.3"
}
}