This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
{
"name": "simple_escape_game",
"version": "1.0.0",
"description": "",
"main": "./electron/public/main.js",
"scripts": {
"refreshWeb": "rm -rf ./__build/*",
"buildWeb": "npm run refreshWeb && npx webpack",
"refreshElectron": "rm -rf ./electron/public/__build/* && rm -rf ./electron/public/assets/* && rm -rf ./electron/public/js/*",
"buildElectron": "npm run refreshElectron && npx webpack --env.electron && npx electron-builder",
"electron": "npm run refreshElectron && npx webpack --env.electron && npx electron .",
"serve": "npx http-server ./__build -p 8080 -o -c-1",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ./node_modules/.bin/mocha -r ts-node/register $(find ./src/test/ -name '*.spec.ts')",
"format": "npx eslint 'src/**/*.ts' --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"phaser": "^3.55.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/events": "^3.0.0",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"chai": "^4.2.0",
"copy-webpack-plugin": "^10.2.4",
"electron": "^18.2.0",
"electron-builder": "^23.0.3",
"eslint": "^7.4.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unused-imports": "^0.1.3",
"http-server": "^14.1.0",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"build": {
"appId": "com.blueArcade.simpeEscapeGame",
"productName": "simpleEscapeGame",
"copyright": "Copyright © 2020 mijinc0",
"directories": {
"output": "./electron/public/__build"
},
"linux": {
"target": [
{
"target": "zip"
}
]
},
"win": {
"target": [
{
"target": "zip"
}
]
},
"mac": {
"target": [
{
"target": "zip"
}
]
}
}
}