forked from raz0red/js7800
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.71 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.71 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
{
"name": "js7800",
"version": "0.0.0",
"description": "An enhanced JavaScript port of the ProSystem Atari 7800 emulator",
"homepage": "https://github.com/raz0red/js7800",
"author": "raz0red",
"license": " GPL-2.0",
"main": "src/js/index.js",
"repository": {
"type": "git",
"url": "git://github.com/raz0red/js7800.git"
},
"scripts": {
"build": "npm run dbConvert && npm run buildModule && npm run buildSite && npm run buildLeaderboard",
"buildModule": "webpack --mode=production",
"buildSite": "webpack --mode=production --config site/webpack.config.js",
"buildLeaderboard": "webpack --mode=production --config site/leaderboard/webpack.config.js",
"webpackWatch": "webpack --watch --mode=production",
"webpackWatchDebug": "webpack -d --watch ",
"webpackWatchLeaderboard": "webpack --watch --mode=production --config site/leaderboard/webpack.config.js",
"webpackWatchLeaderboardDebug": "webpack -d --watch --config site/leaderboard/webpack.config.js",
"devServer": "webpack-dev-server --mode=production --host 0.0.0.0",
"devServerDebug": "webpack-dev-server -d --host 0.0.0.0",
"devServerSite": "webpack-dev-server --config site/webpack.config.js --mode=production --host 0.0.0.0",
"devServerDebugSite": "webpack-dev-server --config site/webpack.config.js -d --host 0.0.0.0",
"dbConvert": "node db/convert.js db/ProSystem.dat > src/js/prosystem/ProSystemDat.js"
},
"dependencies": {
"fullscreen-api-polyfill": "^1.1.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.6"
},
"devDependencies": {
"css-loader": "^3.4.2",
"file-loader": "^5.1.0",
"url-loader": "^3.0.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}