-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
114 lines (114 loc) · 3.46 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
107
108
109
110
111
112
113
114
{
"name": "squid-tracks",
"description": "alternative splatnet2 client with ability to upload to stat.ink",
"productName": "SquidTracks",
"version": "1.3.4-beta",
"private": true,
"author": "@Wrong_Shoe",
"engines": {
"node": ">= 12"
},
"devDependencies": {
"babel-plugin-react-intl": "^7.9.2",
"electron": "^9.1.2",
"electron-builder": "^22.8.1",
"react-intl-translations-manager": "^5.0.3",
"react-scripts": "3.4.3"
},
"dependencies": {
"@msgpack/msgpack": "^1.12.2",
"babel-preset-electron": "^1.4.15",
"babel-register": "^6.26.0",
"base64url": "^3.0.0",
"bootstrap": "4.5.0",
"classnames": "^2.2.6",
"concurrently": "^5.2.0",
"electron-devtools-installer": "^3.1.1",
"electron-is-dev": "^1.0.1",
"electron-log": "^4.2.2",
"electron-unhandled": "^3.0.2",
"electron-updater": "^4.3.4",
"flat": "^5.0.0",
"history": "^5.0.0",
"http-mitm-proxy": "^0.8.2",
"husky": "^4.2.5",
"immer": "^7.0.7",
"immutability-helper": "^3.1.1",
"json2csv": "^5.0.1",
"jws": "^4.0.0",
"lint-staged": "^10.2.11",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"mz": "^2.7.0",
"node-forge": "^0.10.0",
"piping": "^1.0.0-rc.4",
"prettier": "^2.0.5",
"promise-memoize": "^1.2.1",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-intl": "^5.4.5",
"react-json-tree": "^0.12.0",
"react-polygon": "^0.2.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"recharts": "^1.3.5",
"request": "^2.88.2",
"request-promise-native": "^1.0.4",
"sillyname": "^0.1.0",
"universal-analytics": "^0.4.20",
"uuid": "^8.3.0",
"wait-on": "^5.1.0"
},
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"precommit": "lint-staged",
"react-start": "react-app-rewired start",
"build": "react-app-rewired build",
"prepack": "yarn build",
"pack": "electron-builder --c.extraMetadata.main=build/electron.js",
"pack:win": "electron-builder --c.extraMetadata.main=build/electron.js --ia32 --x64",
"release": "electron-builder -c.extraMetadata.main=build/electron.js --publish=always",
"release:win": "electron-builder -c.extraMetadata.main=build/electron.js --ia32 --x64 --publish=always",
"test": "react-app-rewired test --env=jsdom",
"test:main": "jest -c=jest.main.config.json --watch",
"eject": "react-app-rewired eject",
"electron": "electron .",
"electron-dev": "node public/main/dev.js .",
"dev": "concurrently \"yarn react-start\" \"wait-on http://localhost:3000/ && yarn electron-dev\"",
"manage:translations": "node ./translationRunner.js",
"prettier": "./node_modules/.bin/prettier --single-quote --write \"src/**/*.{js,jsx}\" \"public/**/*.{js,jsx}\"",
"eslint": "./node_modules/.bin/eslint src/**/*.js public/**/*.js"
},
"build": {
"appId": "com.shoesoft.splat-track",
"directories": {
"buildResources": "public"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
],
"public/main/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}