This repository has been archived by the owner on Sep 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 3.67 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
{
"name": "masq-app",
"version": "0.12.0",
"private": true,
"license": "GPL-3.0",
"scripts": {
"start": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` react-scripts start",
"build": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` react-scripts build",
"test": "npm run lint && concurrently -k -s first \"signalhubws -p 8080\" \"karma start\"",
"test:browserstack:prod": "wdio test/E2E/conf/prod.conf.js --suite e2e",
"test:browserstack:local": "concurrently -k -s first \"npm run start\" \"wdio test/E2E/conf/local-browserstack.conf.js --suite e2e\"",
"test:browserstack:local:ios": "concurrently -k -s first \"npm run start\" \"wdio test/E2E/conf/local-browserstack-ios.conf.js --suite e2e\"",
"test:local": "wdio test/E2E/conf/local.conf.js --suite e2e",
"lint": "eslint --ext .js,.jsx ./src ./test ./stories",
"lint-fix": "eslint --fix --ext .js,.jsx ./src ./test ./stories",
"scan-i18n": "i18next-scanner",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"dependencies": {
"@clusterws/cws": "^3.0.0",
"bluebird": "^3.5.3",
"classnames": "^2.2.6",
"compressorjs": "^1.0.5",
"detect-browser": "^3.0.1",
"i18next": "^15.1.0",
"i18next-browser-languagedetector": "^3.0.1",
"i18next-xhr-backend": "^2.0.1",
"masq-common": "git+https://github.com/QwantResearch/masq-common#v0.10.2",
"pump": "^3.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-feather": "^1.1.6",
"react-i18next": "^10.9.0",
"react-redux": "^6.0.0",
"react-responsive": "^6.1.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"signalhubws": "^1.0.12",
"typeface-asap": "0.0.35",
"typeface-asap-condensed": "0.0.35",
"uuid": "^3.3.2",
"webrtc-swarm": "git+https://github.com/QwantResearch/webrtc-swarm#masq"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@storybook/addon-actions": "^5.0.3",
"@storybook/addon-links": "^5.0.3",
"@storybook/addons": "^5.0.3",
"@storybook/react": "^5.0.3",
"@wdio/browserstack-service": "^5.12.0",
"@wdio/cli": "^5.11.14",
"@wdio/local-runner": "^5.11.14",
"@wdio/mocha-framework": "^5.11.0",
"@wdio/spec-reporter": "^5.11.7",
"@wdio/sync": "^5.11.13",
"browserstack-local": "^1.4.2",
"chai": "^4.2.0",
"chromedriver": "~76.0.0",
"concurrently": "^4.1.0",
"core-js": "^3.2.1",
"dotenv": "^8.0.0",
"es6-promisify": "^6.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^6.1.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^2.0.1",
"hyperdb": "^3.5.0",
"i18next-scanner": "^2.11",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^6.0.2",
"node-sass": "^4.9.4",
"puppeteer": "~1.17.0",
"qrcode.react": "^0.9.3",
"random-access-memory": "^3.1.1",
"react-app-polyfill": "^1.0.2",
"sinon": "^7.3.2",
"wdio-chromedriver-service": "^5.0.2",
"webpack-cli": "^3.2.3"
}
}