-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.7 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
104
105
106
107
108
{
"name": "webrtc-demoapp",
"version": "3.0.6",
"description": "webrtc sample app written from scratch",
"author": {
"name": "callstats.io",
"author": "lennart",
"url": "https://www.callstats.io/"
},
"license": "ISC",
"keywords": [
"webrtc"
],
"engines": {
"node": "8.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/callstats-io/webrtc-demoapp.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node src/server",
"start": "npm run build && cross-env NODE_ENV=production node build/server",
"prebuild": "rimraf build",
"build": "npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack -p --progress --config=config/webpack.config.prod.js",
"build:server": "copyfiles -u 1 src/server/**/**/* src/server/**/* src/server/* build",
"build:generatecertificate": "mkdir -p ssl && cd ssl && openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout server.key -out server.crt -passin pass:v2ZIZj2jKUap -subj '/CN=localhost/O=Local/C=FI' && cp server.crt ca.crt",
"lint": "eslint --ignore-path .gitignore --ignore-pattern node_modules -- .",
"prettier": "prettier --ignore-path .gitignore --write './**/*.js'",
"test": "exit 1",
"release:patch": "npm run lint && npx standard-version -r patch && git push --follow-tags origin master",
"release:minor": "npm run lint && npx standard-version -r minor && git push --follow-tags origin master",
"release:major": "npm run lint && npx standard-version -r major && git push --follow-tags origin master"
},
"postcss": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-watch": "2.0.7",
"chai": "^4.1.2",
"copyfiles": "2.0.0",
"cross-env": "5.1.4",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-fbjs": "2.0.1",
"eslint-config-prettier": "2.9.0",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-relay": "0.0.21",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-loader": "0.5.5",
"html-webpack-externals-plugin": "^3.7.0",
"html-webpack-harddisk-plugin": "0.2.0",
"html-webpack-plugin": "3.1.0",
"mocha": "^5.0.5",
"node-sass": "4.8.1",
"postcss-load-config": "1.2.0",
"postcss-loader": "2.1.3",
"prettier": "1.11.1",
"puppeteer": "^1.2.0",
"rimraf": "2.6.2",
"sass-loader": "6.0.7",
"standard": "^11.0.1",
"style-loader": "0.20.3",
"uglifyjs-webpack-plugin": "1.2.4",
"webpack": "4.2.0",
"webpack-cli": "2.0.13",
"webpack-dev-middleware": "3.0.1",
"webpack-hot-middleware": "^2.21.2",
"webpack-merge": "4.1.2"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"body-parser": "1.18.2",
"compression": "1.7.2",
"docker-names": "^1.0.3",
"express": "4.16.3",
"hark": "^1.2.0",
"immutable": "3.8.2",
"intl": "1.2.5",
"jsonwebtoken": "^8.2.0",
"material-ui": "0.20.0",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "16.2.1",
"react-hot-loader": "4.0.0",
"react-intl": "2.4.0",
"react-router-dom": "4.2.2",
"request": "2.85.0",
"sanitize.css": "5.0.0",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"whatwg-fetch": "2.0.3",
"winston": "2.4.1"
}
}