This repository has been archived by the owner on Jan 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.94 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
{
"name": "tibia-tools-app",
"version": "0.1.0-alpha.4",
"private": true,
"description": "A simple app to calculate party shared exp level.",
"main": "public/electron.js",
"author": "Michael Anthony Leal Costa",
"license": "MIT",
"homepage": "./",
"repository": {
"type": "git",
"url": "https://github.com/MiCLeal/tibia-tools-app.git"
},
"bugs": {
"url": "https://github.com/MiCLeal/tibia-tools-app/issues"
},
"keywords": [
"tibia",
"tools"
],
"devDependencies": {
"concurrently": "^3.6.1",
"electron": "^5.0.8",
"electron-builder": "^20.28.3",
"eslint": "^5.5.0",
"eslint-plugin-react": "^7.11.1",
"gulp": "^4.0.0",
"prettier": "^1.14.2",
"wait-on": "^2.1.0"
},
"dependencies": {
"@babel/core": "^7.0.0-rc.1",
"bootstrap-scss": "^4.1.3",
"cross-env": "^5.2.0",
"electron-is-dev": "^0.3.0",
"electron-updater": "^3.1.1",
"enzyme": "^3.5.0",
"i18next": "^11.6.0",
"jquery": "^3.5.0",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"popper.js": "^1.14.4",
"react": "^16.4.2",
"react-bootstrap": "^0.32.2",
"react-dom": "^16.4.2",
"react-i18next": "^7.10.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.4.2",
"redux": "^4.0.0"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src/styles --include-path ./node_modules src/styles/ -o src/styles",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src/styles --include-path ./node_modules src/styles/ -o src/styles --watch --recursive",
"scss-start": "npm-run-all -p watch-css react-start",
"build": "yarn build-css && react-scripts build",
"react-start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev": "concurrently \"cross-env BROWSER=none yarn scss-start\" \"wait-on http://localhost:3000 && electron .\"",
"e-pack": "build -w -c.extraMetadata.main=build/electron.js -p onTagOrDraft"
},
"build": {
"appId": "com.mic.tibiatools.app",
"asar": true,
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"npmRebuild": true,
"productName": "Tibia Tools App",
"copyright": "Michael Anthony Leal Costa",
"win": {
"publish": [
"github"
],
"icon": "build/favicon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "7z",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"artifactName": "tibia-tools-app-${version}.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}