-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "moncon-publisherjs",
"version": "1.0.0",
"description": "JS code to add moncon functionality to publisher webs",
"main": "index.js",
"scripts": {
"start": "cp .env.development .env && webpack serve --mode development",
"build:staging": "cp .env.staging .env && webpack --mode production",
"deploy:staging": "scp -r build infinitelabs:/home/ubuntu/site/cdn",
"build:deploy": "yarn build:staging && yarn deploy:staging",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jose Juan",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"luxon": "^2.0.2",
"qr-code-styling": "^1.6.0-rc.1",
"socket.io-client": "^4.1.3",
"toastr": "^2.1.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"dotenv-webpack": "^7.0.1",
"prettier": "2.3.2",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}