-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 944 Bytes
/
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
{
"name": "outrun-leveled",
"version": "0.0.1",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "tsc && browserify lib/index.js -o dist/bundle.js",
"watch:typescript": "tsc --watch",
"watch:browserify": "watchify lib/index.js -o dist/bundle.js",
"watch": "concurrently --kill-others \"npm run watch:typescript\" \"npm run watch:browserify\""
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"@types/react": "16.3.16",
"browserify": "^16.2.2",
"concurrently": "^3.5.1",
"electron": "^2.0.0",
"watchify": "^3.11.0"
},
"dependencies": {
"@types/react-dom": "^16.0.6",
"outrun-game-core": "^0.0.1",
"outrun-renderer-3d": "^0.0.1",
"react-dom": "^16.4.0"
}
}