forked from chrismaltby/gb-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.62 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "gb-studio",
"productName": "GB Studio",
"homepage": "https://www.gbstudio.dev",
"bugs": {
"url": "https://github.com/chrismaltby/gb-studio/issues"
},
"version": "1.2.2",
"description": "Visual retro game maker",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make:win": "electron-forge make --arch=x64 --platform=win32",
"make:win32": "electron-forge make --arch=ia32 --platform=win32",
"make:mac": "electron-forge make --arch=x64 --platform=darwin",
"make:linux": "electron-forge make --arch=x64 --platform=linux",
"make": "electron-forge make",
"make:all": "run-s make:mac make:win make:win32 make:linux",
"publish": "electron-forge publish",
"lint": "eslint --cache --color --ext .jsx,.js src",
"test": "jest",
"coverage": "jest --coverage --runInBand || true",
"missing-translations": "node src/lang/list_missing.js"
},
"keywords": [],
"author": "GB Studio",
"license": "MIT",
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"3x3-equation-solver": "^1.2.18",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/standalone": "^7.4.5",
"@octokit/rest": "^16.25.4",
"about-window": "^1.12.1",
"brace": "^0.11.1",
"chokidar": "^3.3.0",
"classnames": "^2.2.5",
"deepmerge": "^3.1.0",
"electron-compile": "^6.4.4",
"electron-devtools-installer": "^2.1.0",
"electron-is": "^3.0.0",
"electron-settings": "^3.2.0",
"electron-squirrel-startup": "^1.0.0",
"electron-window-state": "^5.0.3",
"fs-extra": "^7.0.1",
"gbdkjs": "^2.1.4",
"ggbgfx": "^1.0.0",
"glob": "^7.1.4",
"image-size": "^0.7.1",
"lodash": "^4.17.21",
"normalizr": "^3.4.0",
"prop-types": "^15.7.2",
"react": "^16.3.2",
"react-ace": "^7.0.1",
"react-dnd": "^2.6.0",
"react-dnd-html5-backend": "^2.6.0",
"react-dom": "^16.3.2",
"react-helmet": "^5.2.1",
"react-highlight-words": "^0.16.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.7",
"react-scroll-into-view-if-needed": "^2.1.7",
"react-select": "^3.0.4",
"react-select-async-paginate": "^0.3.10",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"redux-undo": "^0.6.1",
"reselect": "^4.0.0",
"rimraf": "^2.6.3",
"semver": "^6.0.0",
"uuid": "^3.3.2",
"vm2": "^3.8.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "9.x",
"babel-jest": "^23.6.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"electron-forge": "^5.2.4",
"electron-notarize": "^0.2.0",
"electron-prebuilt-compile": "4.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "^1.6.0",
"jest": "^23.0.0",
"jest-extended": "^0.11.1",
"npm-run-all": "^4.1.5",
"redux-devtools-extension": "^2.13.7"
},
"jest": {
"roots": [
"test/"
],
"verbose": true,
"setupTestFrameworkScriptFile": "jest-extended"
}
}