-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "minimon.js",
"version": "1.0.0",
"description": "Pokemon mini emulator",
"main": "src/index.jsx",
"scripts": {
"core": "cd core; make wasm",
"retroarch": "cd core/libretro; make test",
"table": "python3 ./tools/convert.py > ./src/system/table.ts",
"start": "npm run table; webpack serve",
"build": "npm run table; npm run core; webpack --mode production",
"deploy": "npm run build; scp public/* [email protected]:~/minimon/"
},
"keywords": [],
"author": "Bryon Vandiver",
"license": "ISC",
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"bin": {
"minimon.js": "app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asterick/minimon.js.git"
},
"bugs": {
"url": "https://github.com/asterick/minimon.js/issues"
},
"homepage": "https://github.com/asterick/minimon.js#readme",
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@fluentui/react": "^8.78.1",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"normalize.css": "^8.0.1",
"raw-loader": "^4.0.2",
"rc-dock": "^3.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtualized": "^9.21.2",
"style-loader": "^2.0.0",
"typescript": "^4.0.3",
"webpack": "^5.73.0"
},
"devDependencies": {
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}