-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 3.08 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
{
"name": "@civ-clone/electron-renderer",
"version": "0.1.0",
"main": "main.js",
"repository": "git@github.com:civ-clone/electron-renderer.git",
"keywords": [
"typescript",
"civilization"
],
"author": "dom111 <dom111@users.noreply.github.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npm run ts:compile && npm run prettier:format && npm run esbuild:bundle && npm run scss:compile",
"esbuild:bundle": "esbuild view/js/renderer.ts --bundle --minify --sourcemap --outfile=view/js/renderer.js",
"prettier:check": "prettier --config .prettierrc '**/*.ts'",
"prettier:format": "prettier --config .prettierrc '**/*.ts' --write",
"scss:compile": "sass view/css/app.scss view/css/app.css",
"start": "electron .",
"start:debug": "electron . --inspect",
"ts:compile": "tsc --build tsconfig.json"
},
"devDependencies": {
"@types/node": "^14.0.0",
"esbuild": "^0.14.32",
"prettier": "^2.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@civ-clone/civ1-city": "github:civ-clone/civ1-city",
"@civ-clone/civ1-city-happiness": "github:civ-clone/civ1-city-happiness",
"@civ-clone/civ1-city-improvement": "github:civ-clone/civ1-city-improvement",
"@civ-clone/civ1-civilization": "github:civ-clone/civ1-civilization",
"@civ-clone/civ1-diplomacy": "github:civ-clone/civ1-diplomacy",
"@civ-clone/civ1-game-year": "github:civ-clone/civ1-game-year",
"@civ-clone/civ1-goody-hut": "github:civ-clone/civ1-goody-hut",
"@civ-clone/civ1-government": "github:civ-clone/civ1-government",
"@civ-clone/civ1-player": "github:civ-clone/civ1-player",
"@civ-clone/civ1-science": "github:civ-clone/civ1-science",
"@civ-clone/civ1-trade-rate": "github:civ-clone/civ1-trade-rate",
"@civ-clone/civ1-treasury": "github:civ-clone/civ1-treasury",
"@civ-clone/civ1-unit": "github:civ-clone/civ1-unit",
"@civ-clone/civ1-wonder": "github:civ-clone/civ1-wonder",
"@civ-clone/civ1-world": "github:civ-clone/civ1-world",
"@civ-clone/core-city": "^0.1.0",
"@civ-clone/core-city-build": "^0.1.0",
"@civ-clone/core-city-improvement": "^0.1.0",
"@civ-clone/core-civ-client": "^0.1.0",
"@civ-clone/core-civilization": "^0.1.0",
"@civ-clone/core-client": "^0.1.0",
"@civ-clone/core-data-object": "^0.1.0",
"@civ-clone/core-engine": "^0.1.0",
"@civ-clone/core-game-year": "^0.1.0",
"@civ-clone/core-goody-hut": "^0.1.0",
"@civ-clone/core-player": "^0.1.0",
"@civ-clone/core-player-world": "^0.1.0",
"@civ-clone/core-registry": "^0.1.0",
"@civ-clone/core-science": "^0.1.0",
"@civ-clone/core-treasury": "^0.1.0",
"@civ-clone/core-turn-based-game": "^0.1.0",
"@civ-clone/core-unit": "^0.1.0",
"@civ-clone/core-world": "^0.1.0",
"@civ-clone/simple-ai-client": "github:civ-clone/simple-ai-client",
"@civ-clone/simple-world-generator": "github:civ-clone/simple-world-generator",
"@civ-clone/simple-world-path": "github:civ-clone/simple-world-path",
"electron": "^17.0.0",
"eventemitter3": "^4.0.7",
"feather-icons": "^4.28.0",
"sass": "^1.49.8"
}
}