-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.55 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.55 KB
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": "@first-lego-league/clock",
"version": "2.6.11",
"description": "Clock for ",
"scripts": {
"start": "concurrently -k \"yarpm start:server\" \"yarpm start:ui\"",
"start:ui": "webpack-dev-server --mode development --config webpack.dev.js",
"start:server": "devl -p 8080",
"test": "yarpm run test:server && yarpm run test:ui",
"test:ci": "yarpm run test:ci:server && yarpm run test:ci:ui && codecov",
"test:ci:server": "nyc --all -n=server/**/*.js --report-dir ./coverage/server -r lcovonly yarpm run test:server",
"test:ci:ui": "yarpm run test:ui --reporters mocha,coverage",
"test:server": "mocha ./test/**/*.test.js",
"test:server-coverage": "nyc --all -n={server}/**/*.js -r text yarpm run test:server",
"test:ui": "karma start --single-run --browsers ChromeHeadless",
"test:ui-coverage": "yarpm test:ui --reporters coverage",
"lint": "eslint ./server ./client ./test --ext .js,.jsx",
"build": "webpack --mode production --config webpack.prod.js",
"prepack": "yarpm run build"
},
"engines": {
"node": ">=8.2.1"
},
"files": [
"server",
"public",
"yarn.lock",
"module.yml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FirstLegoLeague/clock.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/FirstLegoLeague/clock/issues"
},
"homepage": "https://github.com/FirstLegoLeague/clock",
"dependencies": {
"@first-lego-league/ms-auth": "^1.4.3",
"@first-lego-league/ms-correlation": "^1.0.1",
"@first-lego-league/ms-logger": "^2.0.1",
"bluebird": "^3.5.1",
"express": "^4.16.3",
"mhub": "^1.0.0",
"semantic-ui-react": "^0.88.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@first-lego-league/dev-launcher": "^0.1.1",
"@first-lego-league/user-interface": "^2.1.1",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.1.4",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.5.0",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.1",
"eslint-config-first-lego-league": "^1.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-chai": "^0.0.1",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-foundation": "^0.9.5",
"react-foundation-modal": "^0.1.5",
"react-resize-detector": "^4.2.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.5.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2",
"yarpm": "^0.2.1"
}
}