-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "the-orange-alliance-datasync",
"productName": "DataSync",
"version": "3.5.1",
"description": "A cross-platform desktop app to sync the Scorekeeper with The Orange Alliance in realtime.",
"author": "The Orange Alliance <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run build-dev && webpack-dev-server",
"clean": "rm dist/bundle.js",
"build-dev": "webpack -d --mode development",
"build": "webpack -p --mode production --env.NODE_ENV=production",
"deploy": "npm run build && firebase deploy --only hosting:datasync",
"prettier": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/orange-alliance/TOA-DataSync.git"
},
"bugs": {
"url": "https://github.com/orange-alliance/TOA-DataSync/issues"
},
"homepage": "https://github.com/orange-alliance/TOA-DataSync#readme",
"dependencies": {
"@mdi/font": "^3.6.95",
"axios": "^0.21.2",
"axios-retry": "^3.1.2",
"bowser": "^2.7.0",
"devtools-detect": "^3.0.0",
"firebase": "^6.0.4",
"jszip": "^3.7.0",
"material-components-web": "^2.2.0",
"reconnectingwebsocket": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.6.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"html-webpack-plugin-assets-fix": "^1.0.2",
"html-webpack-tags-plugin": "^2.0.17",
"husky": "^4.3.0",
"prettier": "2.1.2",
"pretty-quick": "^3.1.0",
"url-loader": "^2.1.0",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.0"
}
}