-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
95 lines (95 loc) · 2.68 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
{
"name": "rift-explorer",
"version": "7.0.0",
"description": "Always up to date documentation for the League Client API",
"author": {
"name": "Robert Manolea",
"email": "manolea.robert@gmail.com",
"url": "https://github.com/pupix"
},
"contributors": [
{
"name": "Ray",
"email": "dev@hiray.me",
"url": "https://hiray.me/"
},
{
"name": "Morilli",
"url": "https://github.com/Morilli"
}
],
"license": "MIT",
"private": true,
"main": "build/app/entry.js",
"dependencies": {
"@sentry/electron": "^2.2.0",
"@sentry/react": "^6.0.3",
"axios": "^0.21.1",
"electron": "^11.2.1",
"mixin-deep": "^2.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"sass": "^1.32.5",
"swagger-ui": "^3.41.1",
"swagger-ui-react": "^3.41.1",
"typescript": "^4.1.3"
},
"scripts": {
"dev": "tsc -p app && concurrently \"cross-env BROWSER=none NODE_ENV=development yarn react:start\" \"wait-on http://localhost:3000/ && electron ./build/app/entry.js\"",
"react:start": "rescripts start",
"build": "yarn && tsc -p app && rescripts build && yarn electron-pack",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "build -mw",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}"
},
"build": {
"appId": "com.rift-explorer",
"productName": "Rift Explorer",
"mac": {
"category": "public.app-category.developer-tools"
},
"directories": {
"buildResources": "assets"
},
"extends": null
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@rescripts/cli": "^0.0.15",
"@rescripts/rescript-env": "^0.0.12",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/swagger-ui-dist": "^3.30.0",
"@types/swagger-ui-react": "^3.35.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"electron-builder": "^22.9.1",
"eslint": "^7.18.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "^2.2.1",
"wait-on": "^5.2.1"
}
}