-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.83 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
{
"name": "path-of-trade",
"version": "1.0.0",
"description": "Path of Diablo trading made easy",
"main": "build/main.js",
"scripts": {
"test": "set NODE_ENV=test&& mocha --timeout 10000 -r ts-node/register tests/**/*.spec.ts",
"test:build": "set NODE_ENV=test&& npm run winapi:build && mocha -r ts-node/register tests/**/*.spec.ts",
"winapi:build": "npm explore winapi -- npm install",
"watch": "tsc -w",
"build": "tsc ./src/main.ts ./src/renderer.ts ./src/preload.ts ./src/compiler.ts --outDir build && parcel build src/index.html ./src/index.js --no-minify --out-dir build/",
"start": "npm run build && electron ./build/main.js",
"pack": "set NODE_ENV=production&& npm run build && electron-builder --dir && node ./build/compiler.js",
"postinstall": "electron-builder install-app-deps"
},
"nodeGypRebuild": "true",
"build": {
"appId": "path.of.trade",
"files": [
"build/**/*"
]
},
"author": "Carlos Hernández Gómez - Karliky",
"license": "Unlicense",
"devDependencies": {
"electron": "6.1.4",
"electron-builder": "^22.1.0",
"electron-rebuild": "^1.8.6",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"mocha": "^6.2.2",
"pug": "^2.0.4",
"sass": "^1.23.7",
"should": "^13.2.3",
"ts-node": "^8.4.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jimp": "^0.2.28",
"@types/mocha": "^5.2.7",
"@types/should": "^13.0.0",
"bindings": "^1.5.0",
"fs-extra": "^8.1.0",
"jimp": "^0.8.5",
"typescript": "^3.6.4",
"vue-content-placeholders": "^0.2.1",
"winapi": "file:../winapi"
}
}