-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.74 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
{
"name": "typescriptzelda",
"productName": "TypescriptZelda",
"version": "0.1.5",
"description": "",
"license": "MIT",
"repository": "TypescriptZelda",
"author": {
"name": "Kevin Cantrell",
"email": "[email protected]",
"url": "https://github.com/kevin192291/TypescriptZelda"
},
"scripts": {
"test": "xo",
"start": "node_modules/.bin/tsc -p game && gulp copy-assets && electron .",
"build": "node_modules/.bin/tsc -p game && electron-packager . --out=dist --asar --overwrite --all"
},
"files": [
"index.js",
"index.html",
"index.css",
"dist/"
],
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"@excaliburjs/excalibur-tiled": "^2.3.1",
"@types/lodash": "^4.14.172",
"ajv": "^6.12.6",
"date-now": "^1.0.1",
"electron-debug": "1.0.0",
"electron-reload": "^1.5.0",
"excalibur": "^0.24.5",
"excaliburjs": "^1.0.7",
"lodash": "^4.17.21",
"mamacro": "^0.0.7",
"pako": "^1.0.11",
"redux": "^4.0.5",
"redux-undo": "^1.0.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"require": "^2.4.20",
"typed-rest-client": "^1.8.1",
"uglify-js": "^3.12.8",
"web-request": "^1.0.7"
},
"devDependencies": {
"@types/lodash-es": "^4.17.4",
"@types/node": "^10.17.52",
"devtron": "1.4.0",
"electron": "^11.2.3",
"electron-packager": "^12.2.0",
"electron-prebuilt": "^1.4.13",
"electron-reloader": "^1.2.1",
"gulp": "^4.0.2",
"gulp-changed": "^3.2.0",
"remote-redux-devtools": "^0.5.16",
"typescript": "^3.9.9",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"xo": "^0.24.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}