-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.54 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.54 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
{
"name": "timing",
"version": "0.1.1",
"description": "An Electron app to interface with the race result decoder box via tcp",
"main": "index.js",
"scripts": {
"clean": "rm -r ./build || true",
"build": "npm run clean && webpack --config webpack.config.js",
"build:electron": "npm run build && electron-builder",
"build:osx": "npm run build && electron-builder --mac",
"build:linux": "docker run --rm -v ${PWD}:/project --env-file .env electronuserland/builder:wine bash -c 'npm i --package-lock=false && npm run build:electron -- --windows --linux'",
"build:production": "npm run build:linux && npm run build:osx",
"start": "electron .",
"lint": "eslint ./src/**.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.critrace.timing",
"files": [
"./*.js",
"./build/**/*"
],
"artifactName": "critrace-timing-${os}-${version}.${ext}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/critrace/timing.git"
},
"eslintConfig": {
"extends": [
"@jchancehud/eslint-config-typescript"
]
},
"author": {
"name": "Chance Hudson"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/critrace/timing/issues"
},
"homepage": "https://github.com/critrace/timing#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@jchancehud/eslint-config-typescript": "^0.0.5",
"@types/axios": "^0.14.0",
"@types/lodash.omitby": "^4.6.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^11.13.0",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.1.13",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"eslint": "^5.16.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"typescript": "^3.4.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"axios": "^0.18.0",
"babel-loader": "^8.0.5",
"electron-debug": "^2.2.0",
"email-validator": "^2.0.4",
"lodash.omitby": "^4.6.0",
"lodash.throttle": "^4.1.1",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0"
}
}