-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.05 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
{
"name": "@first-lego-league/cloud-agent",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/FirstLegoLeague/cloud-agent.git",
"author": "Roy Shmueli <[email protected]>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"start": "concurrently -k \"yarnpm start:be\" \"yarnpm start:ui\" \"yarnpm start:dummy\"",
"start:be": "devl -s tournament=http://localhost:3002 -s scoring=http://localhost:3002 --port 8080",
"start:ui": "webpack-dev-server --mode development --config webpack.dev.js --port 3001",
"start:dummy": "cross-env PORT=3002 node ./dummy/index.js"
},
"dependencies": {
"@first-lego-league/ms-auth": "^1.4.1",
"@first-lego-league/ms-client": "^1.0.3",
"@first-lego-league/ms-correlation": "^1.0.1",
"@first-lego-league/ms-logger": "^2.0.0",
"axios": "^0.19.0",
"bluebird": "^3.5.5",
"fastify": "^2.7.0",
"lodash": "^4.17.15",
"mhub": "^2.0.0",
"moment": "^2.24.0",
"mongodb": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@first-lego-league/dev-launcher": "^0.3.0",
"@first-lego-league/user-interface": "^2.1.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.2",
"cross-env": "^6.0.0",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-first-lego-league": "^1.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"mkdirp": "^0.5.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-drop-zone": "^3.0.7",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"yarnpm": "^0.0.5"
}
}