-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·32 lines (32 loc) · 1.15 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
{
"name": "uwstout-gdd325-gamebase-lite",
"version": "1.0.0",
"description": "A simplified Phaser game base for making 2D web games used in GDD 325 at UW Stout",
"author": "Seth Berrier <[email protected]>",
"main": "public/index.html",
"repository": "UWStout/gdd325-web-base-lite",
"scripts": {
"start": "npm-run-all -s buildindex server",
"dev": "npm-run-all -s cpdevindex server",
"buildindex": "node buildIndex prod",
"cpdevindex": "node buildIndex dev",
"server": "run-script-os",
"server:win32": "browser-sync start -s public -w -f public/**/* -b chrome",
"server:darwin": "browser-sync start -s public -w -f public/**/* -b '/Applications/Google Chrome.app'",
"test": "eslint ./public/src/**/**.js"
},
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.26.7",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"insert-line": "^1.1.0",
"linenumber": "^1.0.1",
"npm-run-all": "^4.1.5",
"run-script-os": "^1.0.7"
}
}