forked from nicholas-ochoa/OpenSC2K
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.33 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.33 KB
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": "OpenSC2K",
"description": "An Open Source remake of SimCity 2000",
"author": "Nicholas Ochoa",
"version": "2.0.0",
"homepage": "https://github.com/rage8885/OpenSC2K",
"repository": {
"type": "git",
"url": "https://github.com/rage8885/OpenSC2K.git"
},
"license": "GPL-3.0",
"main": "dist/main/main.js",
"scripts": {
"lint": "eslint --color --fix --ext .js,.ts,.json ./src",
"dev:dll": "webpack --config webpack.libs.js --env.development",
"dev:main": "webpack --config webpack.main.js --env.development",
"dev:renderer": "webpack --config webpack.renderer.js --env.development",
"dev": "concurrently \"npm:dev:renderer\" \"npm:dev:main\" -k -c yellowBright,cyanBright -n \"render, main\" -i --default-input-target \" main\""
},
"dependencies": {
"ansi-colors": "^4.1.1",
"bmp-ts": "^1.0.3",
"chokidar": "^3.3.1",
"compute-lcm": "^1.1.0",
"concurrently": "^5.0.2",
"cross-env": "^6.0.3",
"electron": "^7.1.10",
"electron-context-menu": "^0.15.2",
"electron-debug": "^3.0.1",
"electron-reloader": "^0.3.0",
"electron-util": "^0.13.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"phaser": "3.22.0",
"pngjs": "file:C:/Users/Nicholas/Development/pngjs/",
"run-electron": "^1.0.0"
},
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/js-yaml": "^3.12.2",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"expose-loader": "^0.7.5",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"nodemon-webpack-plugin": "^4.2.2",
"prettier": "^1.19.1",
"raw-loader": "^4.0.0",
"source-map-support": "^0.5.16",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.0-dev.20200125",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpackbar": "^4.0.0"
}
}