-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "exodus-game",
"version": "1.0.0",
"description": "",
"main": "src/js/game.js",
"scripts": {
"start": "npm run build-dev",
"clean": "gulp clean",
"build-dev": "gulp build-watch-serve",
"build-prod": "gulp build --production",
"serve": "gulp serve",
"eslint": "eslint ./src --ext .js",
"eslint-fix": "eslint --fix ./src --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bystac/exodus-game.git"
},
"keywords": [],
"author": "",
"license": "Private",
"homepage": "https://github.com/bystac/exodus-game#readme",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"babelify": "^10.0.0",
"browser-sync": "^2.26.14",
"browserify": "^17.0.0",
"del": "^6.0.0",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-string-replace": "^1.1.2",
"gulp-tap": "^2.0.0",
"gulp-terser": "^2.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"yargs": "^16.2.0"
},
"dependencies": {
"consola": "~2.15.3",
"phaser": "~3.55.2"
}
}