-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.99 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
{
"name": "remote-doors",
"version": "1.0.0",
"description": "Remote doors",
"main": "src/server/index.js",
"scripts": {
"build": "webpack --mode production --config src/webpack.config.js",
"start": "npm run build && node src/server/index.js",
"upload": "rsync -av --delete . [email protected]:/opt/remote-doors --exclude '.[!.]*' --exclude 'node_modules'",
"restart": "ssh [email protected] pm2 restart doors",
"deploy": "npm run build && npm run upload && npm run restart",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot --config src/webpack.config.js",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --ext .js --fix ./src"
},
"author": "Valia Fetisov",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.16.3",
"mqtt": "^4.1.0",
"prop-types": "^15.7.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^6.1.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"nib": "^1.1.2",
"nodemon": "^1.17.3",
"style-loader": "^0.23.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.11.0"
}
}